igniteui-react-grids
Version:
Ignite UI React grid components.
22 lines (21 loc) • 1.1 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";
/**
* Enumeration representing the possible positions for pinning rows.
* - Top: Rows are pinned to the top of the grid.
* - Bottom: Rows are pinned to the bottom of the grid.
*/
export var RowPinningPosition = /*@__PURE__*/ (function (RowPinningPosition) {
RowPinningPosition[RowPinningPosition["Top"] = 0] = "Top";
RowPinningPosition[RowPinningPosition["Bottom"] = 1] = "Bottom";
return RowPinningPosition;
})({});
/**
* @hidden
*/
export let RowPinningPosition_$type = /*@__PURE__*/ markEnum('RowPinningPosition', 'Top,0|Bottom,1', true);