Table of Contents

Class TablistDialogRow

Namespace
SampSharp.Entities.SAMP
Assembly
SampSharp.OpenMp.Entities.dll

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

columns string[]

The columns of the row.

Properties

ColumnCount

Gets the number of columns in this row.

public int ColumnCount { get; }

Property Value

int

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; }

Property Value

object