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