igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
60 lines (35 loc) • 1.36 kB
TypeScript
import { IgcExporterOptionsBase } from './igc-exporter-options-base';
/* csSuppress */
/**
* Objects of this class are used to configure the Excel exporting process.
*/
export declare class IgcExcelExporterOptions extends IgcExporterOptionsBase
{
/**
* Specifies if column pinning should be ignored. If ignoreColumnsOrder is set to true,
* this option will always be considered as set to true.
*/
public set ignorePinning(value: boolean);
public get ignorePinning(): boolean;
/**
* Specifies whether the exported data should be formatted as Excel table. (True by default)
*/
public set exportAsTable(value: boolean);
public get exportAsTable(): boolean;
/**
* Gets the width of the columns in the exported excel file.
*/
public set columnWidth(value: number);
public get columnWidth(): number;
/**
* Gets the height of the rows in the exported excel file.
*/
public set rowHeight(value: number);
public get rowHeight(): number;
/**
* Gets the name of the worksheet in the exported excel file.
*/
public set worksheetName(value: string);
public get worksheetName(): string;
constructor(fileName: string);
}