Table of Contents

ExcelFile.GetCustomTableStyle Method

Overloads

ExcelFile.GetCustomTableStyle(String)

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

Syntax

Namespace: FlexCel.Core

public abstract TCustomTableStyle GetCustomTableStyle(String name)

Parameters

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

See also

ExcelFile.GetCustomTableStyle(Int32)

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

Syntax

Namespace: FlexCel.Core

public abstract TCustomTableStyle GetCustomTableStyle(Int32 index)

Parameters

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

See also