igniteui-react-grids
Version:
Ignite UI React grid components.
22 lines (21 loc) • 990 B
TypeScript
import { IgrColumn } from "./igr-column";
import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail";
import { ColumnMovingStartEventArgsDetail as ColumnMovingStartEventArgsDetail_internal } from "./ColumnMovingStartEventArgsDetail";
/**
* Represents event arguments related to the start of a column moving operation in a grid.
*/
export declare class IgrColumnMovingStartEventArgsDetail extends IgrBaseEventArgsDetail {
protected createImplementation(): ColumnMovingStartEventArgsDetail_internal;
/**
* @hidden
*/
get i(): ColumnMovingStartEventArgsDetail_internal;
constructor();
/**
* Represents the column that is being moved.
* The `ColumnType` contains the information (the grid it belongs to, css data, settings, etc.) of the column in its properties
*/
get source(): IgrColumn;
set source(v: IgrColumn);
findByName(name: string): any;
}