UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

34 lines (33 loc) 1.54 kB
import { IgrColumn } from "./igr-column"; import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail"; import { ColumnMovingEndEventArgsDetail as ColumnMovingEndEventArgsDetail_internal } from "./ColumnMovingEndEventArgsDetail"; /** * Represents event arguments related to the end of a column moving operation in a grid */ export declare class IgrColumnMovingEndEventArgsDetail extends IgrBaseEventArgsDetail { protected createImplementation(): ColumnMovingEndEventArgsDetail_internal; /** * @hidden */ get i(): ColumnMovingEndEventArgsDetail_internal; constructor(); /** * The source of the event 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); /** * The target of the event represents the column, the source is being moved to. * The `ColumnType` contains the information (the grid it belongs to, css data, settings, etc.) of the column in its properties */ get target(): IgrColumn; set target(v: IgrColumn); /** * `cancel` returns whether the event has been intercepted and stopped * If the value becomes "true", it returns/exits from the method, instantiating the interface */ get cancel(): boolean; set cancel(v: boolean); findByName(name: string): any; }