Table of Contents

TTableApplyBorders.Create Method

Overloads

TTableApplyBorders.Create(Boolean)

Creates an Apply Borders setting all members to true or false.

Syntax

Unit: FlexCel.Core

class function TTableApplyBorders.Create(const AllTrue: Boolean): TTableApplyBorders; static; overload;

Parameters

<-> Parameter Type Description
const AllTrue Boolean If true all members will be set to true. If not, all members will be false.

See also

TTableApplyBorders.Create(Boolean, Boolean, Boolean, Boolean, Boolean, Boolean)

Creates a new struct setting the members to true or false.

Syntax

Unit: FlexCel.Core

class function TTableApplyBorders.Create(const aLeft: Boolean; const aTop: Boolean; const aRight: Boolean; const aBottom: Boolean; const aInsideVertical: Boolean; const aInsideHorizontal: Boolean): TTableApplyBorders; static; overload;

Parameters

<-> Parameter Type Description
const aLeft Boolean If true, the left border will be applied.
const aTop Boolean If true, the top border will be applied.
const aRight Boolean If true, the right border will be applied.
const aBottom Boolean If true, the bottom border will be applied.
const aInsideVertical Boolean If true, the inside vertical borders will be applied.
const aInsideHorizontal Boolean If true, the inside horizontal borders will be applied.

See also