wijmo.grid Namespace : selection type |
Javascript (Usage) | |
---|---|
var instance = new wijmo.grid.selection(); |
Javascript (Specification) | |
---|---|
|
Object
wijmo.grid.selection
Name | Description | |
---|---|---|
![]() | selection Constructor | An object that represents selection in the grid. You do not need to create instances of this class. |
Name | Description | |
---|---|---|
![]() | addColumns | Adds a column range to the current selection. Usage: 1. addColumns(0) 2. addColumns(0, 2) |
![]() | addRange | Adds a cell range to the current selection. |
![]() | addRows | Adds a row range to the current selection. Usage: 1. addRows(0) 2. addRows(0, 2) |
![]() | beginUpdate | Begins the update. Any changes won't take effect until endUpdate() is called. |
![]() | clear | Clears the selection. |
![]() | endUpdate | Ends the update. The pending changes are executed and the selectionChanged event is raised. |
![]() | removeColumns | Removes a range of columns from the current selection. Usage: 1. removeColumns(0) 2. removeColumns(0, 2) |
![]() | removeRange | Removes a range of cells from the current selection. |
![]() | removeRows | Removes a range of rows from the current selection. Usage: 1. removeRows(0) 2. removeRows(0, 2) |
![]() | selectAll | Selects all the cells in a grid. |
![]() | selectedCells | Gets a read-only collection of the selected cells. |