igniteui-react-grids
Version:
Ignite UI React grid components.
42 lines (41 loc) • 1.97 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "igniteui-react-core";
/**
* Indicates the selection mode to use for the grid.
*/
export var DataGridSelectionMode = /*@__PURE__*/ (function (DataGridSelectionMode) {
/**
* No selection should be peformed based on interaction.
*/
DataGridSelectionMode[DataGridSelectionMode["None"] = 0] = "None";
/**
* A single row is permitted to be selected at a time from interaction.
*/
DataGridSelectionMode[DataGridSelectionMode["SingleRow"] = 1] = "SingleRow";
/**
* Multiple rows are permitted to be selected at a time from interaction.
*/
DataGridSelectionMode[DataGridSelectionMode["MultipleRow"] = 2] = "MultipleRow";
/**
* A single cell is permitted to be selected at a time from interaction.
*/
DataGridSelectionMode[DataGridSelectionMode["SingleCell"] = 3] = "SingleCell";
/**
* Multiple cells are permitted to be selected at a time from interaction.
*/
DataGridSelectionMode[DataGridSelectionMode["MultipleCell"] = 4] = "MultipleCell";
/**
* Multiple cells are allowed to be selected however they are stored as ranges not individual cells.
*/
DataGridSelectionMode[DataGridSelectionMode["RangeCell"] = 5] = "RangeCell";
return DataGridSelectionMode;
})({});
/**
* @hidden
*/
export var DataGridSelectionMode_$type = /*@__PURE__*/ markEnum('DataGridSelectionMode', 'None,0|SingleRow,1|MultipleRow,2|SingleCell,3|MultipleCell,4|RangeCell,5');