Method | Description | |
---|---|---|
Add ( Cells value ) : void |
Adds an instance of type Cells.ICellVirtual to the end of this CellBaseCollection.
|
|
AddRange ( |
Adds the elements of another CellBaseCollection to the end of this CellBaseCollection.
|
|
AddRange ( Cells items ) : void |
Adds the elements of an array to the end of this CellBaseCollection.
|
|
CellCollection ( ) : System |
Initializes a new empty instance of the CellBaseCollection class.
|
|
CellCollection ( |
Initializes a new instance of the CellBaseCollection class, containing elements copied from another instance of CellBaseCollection
|
|
CellCollection ( Cells items ) : System |
Initializes a new instance of the CellBaseCollection class, containing elements copied from an array.
|
|
Contains ( Cells value ) : bool |
Determines whether a specfic Cells.ICellVirtual value is in this CellBaseCollection.
|
|
GetEnumerator ( ) : |
Returns an enumerator that can iterate through the elements of this CellBaseCollection.
|
|
IndexOf ( Cells value ) : int |
Return the zero-based index of the first occurrence of a specific value in this CellBaseCollection
|
|
Insert ( int index, Cells value ) : void |
Inserts an element into the CellBaseCollection at the specified index
|
|
Remove ( Cells value ) : void |
Removes the first occurrence of a specific Cells.ICellVirtual from this CellBaseCollection.
|
|
this ( int index ) : Cells.ICellVirtual |
Gets or sets the Cells.ICellVirtual at the given index in this CellBaseCollection.
|
public Add ( Cells value ) : void | ||
value | Cells | /// The Cells.ICellVirtual to be added to the end of this CellBaseCollection. /// |
return | void |
public AddRange ( |
||
items | /// The CellBaseCollection whose elements are to be added to the end of this CellBaseCollection. /// | |
return | void |
public AddRange ( Cells items ) : void | ||
items | Cells | /// The array whose elements are to be added to the end of this CellBaseCollection. /// |
return | void |
public CellCollection ( |
||
items | /// The CellBaseCollection whose elements are to be added to the new CellBaseCollection. /// | |
return | System |
public CellCollection ( Cells items ) : System | ||
items | Cells | /// The array whose elements are to be added to the new CellBaseCollection. /// |
return | System |
public Contains ( Cells value ) : bool | ||
value | Cells | /// The Cells.ICellVirtual value to locate in this CellBaseCollection. /// |
return | bool |
public GetEnumerator ( ) : |
||
return |
public IndexOf ( Cells value ) : int | ||
value | Cells | /// The Cells.ICellVirtual value to locate in the CellBaseCollection. /// |
return | int |
public Insert ( int index, Cells value ) : void | ||
index | int | /// The index at which the Cells.ICellVirtual is to be inserted. /// |
value | Cells | /// The Cells.ICellVirtual to insert. /// |
return | void |
public Remove ( Cells value ) : void | ||
value | Cells | /// The Cells.ICellVirtual value to remove from this CellBaseCollection. /// |
return | void |
public this ( int index ) : Cells.ICellVirtual | ||
index | int | |
return | Cells.ICellVirtual |