UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

40 lines (39 loc) 1.43 kB
import { IgrCellType } from "./igr-cell-type"; import { IgrRowType } from "./igr-row-type"; import { GridContextMenuEventArgsDetail as GridContextMenuEventArgsDetail_internal } from "./GridContextMenuEventArgsDetail"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Represents an event argument for the grid contextMenu output */ export declare class IgrGridContextMenuEventArgsDetail { protected createImplementation(): GridContextMenuEventArgsDetail_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): GridContextMenuEventArgsDetail_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * Represents the grid cell that triggered the event. */ get cell(): IgrCellType; set cell(v: IgrCellType); /** * Represents the original event that occurred * Examples of such events include: selecting, clicking, double clicking, etc. */ get event(): any; set event(v: any); /** * Represents the grid row that triggered the event. */ get row(): IgrRowType; set row(v: IgrRowType); findByName(name: string): any; setNativeElement(element: any): void; }