Class TablistDialogRow
Represents a row in a TablistDialog.
public class TablistDialogRow : IDialogRow
- Inheritance
-
TablistDialogRow
- Implements
- Inherited Members
Constructors
TablistDialogRow(params string[])
Initializes a new instance of the TablistDialogRow class.
public TablistDialogRow(params string[] columns)
Parameters
columnsstring[]The columns of the row.
Properties
ColumnCount
Gets the number of columns in this row.
public int ColumnCount { get; }
Property Value
Columns
Gets the columns of this tablist dialog row.
public string[] Columns { get; }
Property Value
- string[]
Tag
Gets or sets the tag. The tag can be used to associate data with this row which can be retrieved when the user responds to the dialog.
public object? Tag { get; set; }