Wijmo UI for the Web
removeColumns Method
wijmo.grid Namespace > selection type : removeColumns Method
The index of the first column to remove.
The index of the last column to remove.
Removes a range of columns from the current selection. Usage: 1. removeColumns(0) 2. removeColumns(0, 2)
Syntax
var instance = new wijmo.grid.selection();

// Parameters
var start; // Type:  number
var end; // Type:  number

instance.removeColumns(start, end);
function removeColumns( 
   start : number,
   end : number
) : void;

Parameters

start
The index of the first column to remove.
end
The index of the last column to remove.
Example
// Remove the first columm from the selection.
selectionObj.removeColumns(0);
Remarks
The result depends upon the chosen selection mode in the grid.
See Also

Reference

selection type