igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
24 lines (23 loc) • 785 B
TypeScript
import { GridCellPosition as GridCellPosition_internal } from "./GridCellPosition";
export declare class IgcGridCellPosition {
protected createImplementation(): GridCellPosition_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): GridCellPosition_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets or sets the row position of the cell.
*/
get rowIndex(): number;
set rowIndex(v: number);
/**
* Gets or sets the column position of the cell. Can be null for spanning elements like section headers.
*/
get columnUniqueKey(): string;
set columnUniqueKey(v: string);
findByName(name: string): any;
}