UnSited() protected method

protected UnSited ( ) : void
return void
Example #1
0
 internal void Unsite()
 {
     foreach (TreeGridNode childNode in this.Nodes)
     {
         childNode.Unsite();
     }
     foreach (DataGridViewCell cell in this.Cells)
     {
         TreeGridCell treeCell = cell as TreeGridCell;
         if (treeCell != null)
         {
             treeCell.UnSited();
         }
     }
     this.isSited = false;
 }