igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 939 B
TypeScript
import { IgrColumnMovingEventArgsDetail } from "./igr-column-moving-event-args-detail";
import { ColumnMovingEventArgs as ColumnMovingEventArgs_internal } from "./ColumnMovingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Represents event arguments related to a column moving operation in a grid
*/
export declare class IgrColumnMovingEventArgs {
protected createImplementation(): ColumnMovingEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): ColumnMovingEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
get detail(): IgrColumnMovingEventArgsDetail;
set detail(v: IgrColumnMovingEventArgsDetail);
}