[]
Selects a range of cells.
public void Select(CellRange rg, bool show)
Type | Name | Description |
---|---|---|
CellRange | rg | CellRange that specifies the cells that will be selected. |
bool | show | Whether to scroll the new selection into view. |
Selects a ranges of cells in MultiRange mode.
public void Select(IList<CellRange> ranges, bool show)
Type | Name | Description |
---|---|---|
IList<CellRange> | ranges | CellRange that specifies ranges of the cells that will be selected. |
bool | show | Whether to scroll the last selection range into view. |
Selects a range of cells and scrolls it into view.
public void Select(CellRange rg)
Type | Name | Description |
---|---|---|
CellRange | rg | CellRange that specifies the cells that will be selected. |
Selects a ranges of cells and scrolls last selection range into view in MultiRange mode.
public void Select(IList<CellRange> ranges)
Type | Name | Description |
---|---|---|
IList<CellRange> | ranges | CellRange that specifies the cells that will be selected. |
Selects a range of cells.
public void Select(int row, int col, int rowSel, int colSel, bool show)
Type | Name | Description |
---|---|---|
int | row | New value for the Row property. |
int | col | New value for the Col property. |
int | rowSel | New value for the RowSel property. |
int | colSel | New value for the ColSel property. |
bool | show | Whether to scroll the new selection into view. |
Using the Select(CellRange, bool) method is equivalent to setting the Row, Col, RowSel, and ColSel properties.
Selects a range of cells and scrolls it into view.
public void Select(int row, int col, int rowSel, int colSel)
Type | Name | Description |
---|---|---|
int | row | New value for the Row property. |
int | col | New value for the Col property. |
int | rowSel | New value for the RowSel property. |
int | colSel | New value for the ColSel property. |
Using the Select(CellRange, bool) method is equivalent to setting the Row, Col, RowSel, and ColSel properties.
Selects a cell.
public void Select(int row, int col, bool show)
Type | Name | Description |
---|---|---|
int | row | New value for the Row property. |
int | col | New value for the Col property. |
bool | show | Whether to scroll the new selection into view. |
Using the Select(CellRange, bool) method is equivalent to setting the Row and Col properties.
Selects a cell and scrolls it into view.
public void Select(int row, int col)
Type | Name | Description |
---|---|---|
int | row | New value for the Row property. |
int | col | New value for the Col property. |
Using the Select(CellRange, bool) method is equivalent to setting the Row and Col properties.