UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

35 lines (34 loc) 1.11 kB
import { IgcCellInfo } from './igc-cell-info'; import { IgcDataGridComponent } from './igc-data-grid-component'; import { DataGridCellEventArgs as DataGridCellEventArgs_internal } from "./DataGridCellEventArgs"; import { MouseButton } from "igniteui-webcomponents-core"; /** * Information about the cell in context. */ export declare class IgcDataGridCellEventArgs { protected createImplementation(): DataGridCellEventArgs_internal; protected _implementation: any; get i(): DataGridCellEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * The backing information for the current cell. */ get cellInfo(): IgcCellInfo; /** * Gets the grid owning the cell. */ get grid(): IgcDataGridComponent; set grid(v: IgcDataGridComponent); /** * Gets which click type it is. */ get button(): MouseButton; set button(v: MouseButton); /** * Is this a double click? */ get isDoubleClick(): boolean; set isDoubleClick(v: boolean); }