igniteui-react-grids
Version:
Ignite UI React grid components.
45 lines (44 loc) • 1.71 kB
TypeScript
import { GridSelectionRangeDetail as GridSelectionRangeDetail_internal } from "./GridSelectionRangeDetail";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Represents a range selection between certain rows and columns of the grid.
* Range selection can be made either through drag selection or through keyboard selection.
*/
export declare class IgrGridSelectionRangeDetail {
protected createImplementation(): GridSelectionRangeDetail_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): GridSelectionRangeDetail_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* The index of the starting row of the selection range.
*/
get rowStart(): number;
set rowStart(v: number);
/**
* The index of the ending row of the selection range.
*/
get rowEnd(): number;
set rowEnd(v: number);
/**
* The identifier or index of the starting column of the selection range.
* It can be either a string representing the column's field name or a numeric index.
*/
get columnStart(): number;
set columnStart(v: number);
/**
* The identifier or index of the ending column of the selection range.
* It can be either a string representing the column's field name or a numeric index.
*/
get columnEnd(): number;
set columnEnd(v: number);
findByName(name: string): any;
setNativeElement(element: any): void;
}