Font.bold - multiple declarations
Function Font.bold
Wraps TTF_GetFontStyle
to get whether the Font
style is bold
bool bold() @property @trusted const;
Returns
true
if the Font
is bold, otherwise false
Function Font.bold
Wraps TTF_SetFontStyle
to set the Font
style to be bold
void bold
(
bool newBold
) @property @trusted;
Parameters
Name | Description |
---|---|
newBold | true to make the Font bold, otherwise false |