Method | Description | |
---|---|---|
Add ( |
Adds the specified Cell to the end of the collection
|
|
AddRange ( |
Adds an array of Cell objects to the collection
|
|
CellCollection ( |
Initializes a new instance of the CellCollection class that belongs to the specified Row
|
|
Clear ( ) : void |
Removes all Cells from the collection
|
|
IndexOf ( |
Returns the index of the specified Cell in the model
|
|
Insert ( int index, |
Inserts a Cell into the collection at the specified index
|
|
InsertRange ( int index, |
Inserts an array of Cells into the collection at the specified index
|
|
Remove ( |
Removes the specified Cell from the model
|
|
RemoveAt ( int index ) : void |
Removes the Cell at the specified index from the collection
|
|
RemoveRange ( |
Removes an array of Cell objects from the collection
|
|
this ( int index ) : |
Gets the Cell at the specified index
|
Method | Description | |
---|---|---|
OnCellAdded ( |
Raises the CellAdded event
|
|
OnCellRemoved ( |
Raises the CellRemoved event
|
public AddRange ( |
||
cells | An array of Cell objects to add /// to the collection | |
return | void |
public CellCollection ( |
||
owner | A Row representing the row that owns /// the Cell collection | |
return | System |
public IndexOf ( |
||
cell | The Cell to look for | |
return | int |
public Insert ( int index, |
||
index | int | The zero-based index at which the Cell /// should be inserted |
cell | The Cell to insert | |
return | void |
public InsertRange ( int index, |
||
index | int | The zero-based index at which the cells should be inserted |
cells | An array of Cells to be inserted into the collection | |
return | void |
protected OnCellAdded ( |
||
e | A RowEventArgs that contains the event data | |
return | void |
protected OnCellRemoved ( |
||
e | A RowEventArgs that contains the event data | |
return | void |
public RemoveAt ( int index ) : void | ||
index | int | The index of the Cell to remove |
return | void |
public RemoveRange ( |
||
cells | An array of Cell objects to remove /// from the collection | |
return | void |