TCondFmtApplyBorders.Create Method
Overloads
TCondFmtApplyBorders.Create(Boolean)
Creates an Apply Borders setting all members to true or false.
Syntax
Unit: FlexCel.Core
class function TCondFmtApplyBorders.Create(const AllTrue: Boolean): TCondFmtApplyBorders; 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
TCondFmtApplyBorders.Create(Boolean, Boolean, Boolean, Boolean)
Creates a new struct setting the members to true or false.
Syntax
Unit: FlexCel.Core
class function TCondFmtApplyBorders.Create(const aLeft: Boolean; const aTop: Boolean; const aRight: Boolean; const aBottom: Boolean): TCondFmtApplyBorders; 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. |
See also