TTableApplyFont.Create Method
Overloads
TTableApplyFont.Create(Boolean)
Creates an Apply Font setting all members to true or false.
Syntax
Unit: FlexCel.Core
class function TTableApplyFont.Create(const AllTrue: Boolean): TTableApplyFont; 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
TTableApplyFont.Create(Boolean, Boolean, Boolean, Boolean)
Creates a new struct setting the members to true or false.
Syntax
Unit: FlexCel.Core
class function TTableApplyFont.Create(const aColor: Boolean; const aBoldAndItalic: Boolean; const aStrikeout: Boolean; const aUnderline: Boolean): TTableApplyFont; static; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
aColor |
Boolean |
If true, the font color will be applied. |
const |
aBoldAndItalic |
Boolean |
If true, the font bold and italic styles will be applied. |
const |
aStrikeout |
Boolean |
If true, the font strikeout style will be applied. |
const |
aUnderline |
Boolean |
If true, the font underline will be applied. |
See also