Table of Contents

Class TablistDialogRowCollection

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

Represents a collection of dialog rows of type TablistDialogRow.

public class TablistDialogRowCollection : DialogRowCollection<TablistDialogRow>, IEnumerable<TablistDialogRow>, IEnumerable
Inheritance
TablistDialogRowCollection
Implements
Inherited Members

Constructors

TablistDialogRowCollection(int)

Initializes a new instance of the TablistDialogRowCollection class.

public TablistDialogRowCollection(int columnCount)

Parameters

columnCount int

The required number of columns.

Methods

Add(TablistDialogRow)

Adds the specified row to the list.

public override void Add(TablistDialogRow row)

Parameters

row TablistDialogRow

The row to add.

Exceptions

ArgumentNullException

Thrown if row is null.

ArgumentException

Thrown if the row does not contain the required number of columns.

Add(params string[])

Adds a row to the list with the specified columns.

public void Add(params string[] columns)

Parameters

columns string[]

The columns of the row to add.

Exceptions

ArgumentNullException

Thrown if columns is null.