Ejemplo n.º 1
0
 public void SelectAll()
 {
     Selections.ClearSelection();
     Selections.StartAt(0, 0);
     for (var i = 0; i < _rows.Count; i++)
     {
         Selections.Add(RowSelection.FullRowSelection(i));
     }
 }
Ejemplo n.º 2
0
 public void SelectRow(int y)
 {
     Selections.ClearSelection();
     Selections.StartAt(0, y);
     Selections.Add(RowSelection.FullRowSelection(y));
 }