UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

26 lines (25 loc) 1.02 kB
import { IgrRowExportingEventArgsDetail } from "./igr-row-exporting-event-args-detail"; import { RowExportingEventArgs as RowExportingEventArgs_internal } from "./RowExportingEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * rowExporting event arguments * this.exporterService.rowExporting.subscribe((args: IRowExportingEventArgs) => { * // set args properties here * }) */ export declare class IgrRowExportingEventArgs { protected createImplementation(): RowExportingEventArgs_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): RowExportingEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; get detail(): IgrRowExportingEventArgsDetail; set detail(v: IgrRowExportingEventArgsDetail); }