Table of Contents

ExcelFile.DeleteCustomTableStyle Method

Overloads

ExcelFile.DeleteCustomTableStyle(Int32)

Deletes an existing table style.

Syntax

Namespace: FlexCel.Core

public abstract void DeleteCustomTableStyle(Int32 index)

Parameters

<-> Parameter Type Description
index Int32 Position of the table style to delete (1 based).

See also

ExcelFile.DeleteCustomTableStyle(String)

Deletes an existing table style given its name.

Syntax

Namespace: FlexCel.Core

public abstract void DeleteCustomTableStyle(String name)

Parameters

<-> Parameter Type Description
name String Name of the table style to delete. If the name doesn't exist, this method will throw an exception.
Case insensitive: "NAME" is the same as "name".

You can use HasCustomTableStyle to check if a table style exists before deleting it.

See also