igniteui-react-grids
Version:
Ignite UI React grid components.
33 lines (32 loc) • 1.25 kB
TypeScript
import { GridClipboardEventDetail as GridClipboardEventDetail_internal } from "./GridClipboardEventDetail";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* The event arguments when data from a grid is being copied.
*/
export declare class IgrGridClipboardEventDetail {
protected createImplementation(): GridClipboardEventDetail_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): GridClipboardEventDetail_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* `data` can be of any type and refers to the data that is being copied/stored to the clipboard
*/
get data(): any[];
set data(v: any[]);
/**
* `cancel` returns whether an external event has intercepted the copying
* If the value becomes "true", it returns/exits from the method, instantiating the interface
*/
get cancel(): boolean;
set cancel(v: boolean);
findByName(name: string): any;
setNativeElement(element: any): void;
}