igniteui-react-grids
Version:
Ignite UI React grid components.
28 lines (27 loc) • 1.2 kB
TypeScript
import { IgrColumn } from "./igr-column";
import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail";
import { ColumnMovingEventArgsDetail as ColumnMovingEventArgsDetail_internal } from "./ColumnMovingEventArgsDetail";
/**
* Represents event arguments related to a column moving operation in a grid
*/
export declare class IgrColumnMovingEventArgsDetail extends IgrBaseEventArgsDetail {
protected createImplementation(): ColumnMovingEventArgsDetail_internal;
/**
* @hidden
*/
get i(): ColumnMovingEventArgsDetail_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);
/**
* `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;
}