Class TablistDialogRowCollection
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
columnCountintThe required number of columns.
Methods
Add(TablistDialogRow)
Adds the specified row to the list.
public override void Add(TablistDialogRow row)
Parameters
rowTablistDialogRowThe row to add.
Exceptions
- ArgumentNullException
Thrown if
rowis 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
columnsstring[]The columns of the row to add.
Exceptions
- ArgumentNullException
Thrown if
columnsis null.