Represents a style which can be applied to a .

Inheritance

constructor

public WorksheetTableStyle(string name)

Returns WorksheetTableStyle

Gets or sets the number of columns which will span each alternate column stripe.

public int AlternateColumnStripeWidth { get; set; }

Gets or sets the number of rows which will span each alternate row stripe.

public int AlternateRowStripeHeight { get; set; }

Gets the collection of formats used for each area of a to which the style is applied.

public WorksheetTableAreaFormatsCollection<WorksheetTableStyleArea> AreaFormats { get; }

Gets or sets the number of columns which will span each column stripe.

public int ColumnStripeWidth { get; set; }

Gets the value indicating whether the style is a custom style.

public bool IsCustom { get; }

Gets or sets the name of the style.

public string Name { get; set; }

Gets or sets the number of rows which will span each row stripe.

public int RowStripeHeight { get; set; }

Duplicates the style and returns a deep copy.

public WorksheetTableStyle Clone(string name)

Parameters

  • name: string

Returns any