public VisualCellsCollectionEnumerator(VisualCellsCollection collection)
 {
     this.collection = collection;
 }
 public void Dispose()
 {
     this.collection = (VisualCellsCollection)null;
     this.current    = (GridCellElement)null;
 }
Exemple #3
0
 public GridRowElement()
 {
     this.visualCells = new VisualCellsCollection(this);
 }