igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
31 lines (30 loc) • 934 B
TypeScript
import { CellStyleRequestedEventArgs as CellStyleRequestedEventArgs_internal } from "./CellStyleRequestedEventArgs";
/**
* Information about the style request for a cell.
*/
export declare class IgcCellStyleRequestedEventArgs {
protected createImplementation(): CellStyleRequestedEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CellStyleRequestedEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* The proposed style key for the cell. Used for recycling the cell.
*/
get styleKey(): string;
set styleKey(v: string);
/**
* The resolved value for the cell.
*/
get resolvedValue(): any;
set resolvedValue(v: any);
/**
* The row number for the cell.
*/
get rowNumber(): number;
set rowNumber(v: number);
}