igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
22 lines (21 loc) • 651 B
TypeScript
import { ColumnExchanger as ColumnExchanger_internal } from "./ColumnExchanger";
/**
* Indicates a column that should be exchanged with another.
*/
export declare class IgcColumnExchanger {
protected createImplementation(): ColumnExchanger_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): ColumnExchanger_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* The desired location of the new column
*/
get targetIndex(): number;
set targetIndex(v: number);
findByName(name: string): any;
}