Skip to the content.

PromptPlus API:ResultTableSelect

Build Publish License NuGet Downloads

Back to List Api

ResultTableSelect<T>

Namespace: PPlus.Controls

Represents The Table Select Result

public class ResultTableSelect<T>

Type Parameters

T
Typeof return

Inheritance ObjectResultTableSelect<T>

Properties

Column

Column number, base 0.

public int Column { get; }

Property Value

Int32

ColumnValue

Column value

public object ColumnValue { get; }

Property Value

Object

Row

Row number, base 0.

public int Row { get; }

Property Value

Int32

RowValue

Row value

public T RowValue { get; }

Property Value

T

Constructors

ResultTableSelect()

Create a ResultPrompt

public ResultTableSelect()

Remarks:

Do not use this constructor!

ResultTableSelect(Int32, Int32, T, Object)

Create ResultGrid instance.

public ResultTableSelect(int row, int column, T rowvalue, object columnvalue)

Parameters

row Int32
Row number

column Int32
Column number

rowvalue T
Row value

columnvalue Object
Column value


Back to List Api