Method | Description | |
---|---|---|
Add ( |
Adds the specified Row to the end of the collection
|
|
AddRange ( |
Adds an array of Row objects to the collection
|
|
Clear ( ) : void |
Removes all Rows from the collection
|
|
IndexOf ( |
Returns the index of the specified Row in the model
|
|
Insert ( int index, |
Inserts a Row into the collection at the specified index
|
|
InsertRange ( int index, |
Inserts an array of Rows into the collection at the specified index
|
|
Remove ( |
Removes the specified Row from the model
|
|
RemoveAt ( int index ) : void |
Removes the Row at the specified index from the collection
|
|
RemoveRange ( |
Removes an array of Row objects from the collection
|
|
RowCollection ( |
Initializes a new instance of the RowCollection class that belongs to the specified Row
|
|
RowCollection ( |
Initializes a new instance of the RowCollection class that belongs to the specified TableModel
|
|
this ( int index ) : |
Gets the Row at the specified index
|
Method | Description | |
---|---|---|
OnRowAdded ( |
Raises the RowAdded event
|
|
OnRowAdded ( |
Raises the RowAdded event
|
|
OnRowRemoved ( |
Raises the RowRemoved event
|
|
OnRowRemoved ( |
Raises the RowRemoved event
|
Method | Description | |
---|---|---|
SetRow ( int index, |
Replaces the Row at the specified index to the specified Row
|
public AddRange ( |
||
rows | An array of Row objects to add /// to the collection | |
return | void |
public Insert ( int index, |
||
index | int | The zero-based index at which the Row /// should be inserted |
row | The Row to insert | |
return | void |
public InsertRange ( int index, |
||
index | int | The zero-based index at which the rows /// should be inserted |
rows | The array of Rows to be inserted into /// the collection | |
return | void |
protected OnRowAdded ( |
||
e | A TableModelEventArgs that contains the event data | |
return | void |
protected OnRowAdded ( |
||
e | A TableModelEventArgs that contains the event data | |
return | void |
protected OnRowRemoved ( |
||
e | A TableModelEventArgs that contains the event data | |
return | void |
protected OnRowRemoved ( |
||
e | A TableModelEventArgs that contains the event data | |
return | void |
public RemoveAt ( int index ) : void | ||
index | int | The index of the Row to remove |
return | void |
public RemoveRange ( |
||
rows | An array of Row objects to remove /// from the collection | |
return | void |
public RowCollection ( |
||
owner | A TableModel representing the tableModel that owns /// the RowCollection | |
return | System |