igniteui-react-grids
Version:
Ignite UI React grid components.
20 lines (19 loc) • 857 B
TypeScript
import { IgrRowIsland } from "./igr-row-island";
import { IgrHierarchicalGrid } from "./igr-hierarchical-grid";
import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail";
import { GridCreatedEventArgsDetail as GridCreatedEventArgsDetail_internal } from "./GridCreatedEventArgsDetail";
export declare class IgrGridCreatedEventArgsDetail extends IgrBaseEventArgsDetail {
protected createImplementation(): GridCreatedEventArgsDetail_internal;
/**
* @hidden
*/
get i(): GridCreatedEventArgsDetail_internal;
constructor();
get owner(): IgrRowIsland;
set owner(v: IgrRowIsland);
get parentID(): any;
set parentID(v: any);
get grid(): IgrHierarchicalGrid;
set grid(v: IgrHierarchicalGrid);
findByName(name: string): any;
}