Table of Contents

TXlsFile.GetCustomTableStyle Method

Overloads

TXlsFile.GetCustomTableStyle(string)

Gets the custom table style with a given name. If the name doesn't exist, this method returns null.

Syntax

Unit: FlexCel.XlsAdapter

function TXlsFile.GetCustomTableStyle(const name: string): ICustomTableStyle; overload; override;

Parameters

<-> Parameter Type Description
const name string Name of the table style we want to retrieve. Case insensitive: "NAME" is the same as "name".

See also

TXlsFile.GetCustomTableStyle(Integer)

Gets the custom table style at position index (1 based).

Syntax

Unit: FlexCel.XlsAdapter

function TXlsFile.GetCustomTableStyle(const index: Integer): ICustomTableStyle; overload; override;

Parameters

<-> Parameter Type Description
const index Integer Position for the custom style in the style table. (1 based). If index is less than 0 or equal or bigger than TExcelFile.CustomTableStyleCount then this method will throw an exception.

See also