Description
This tag activates/deactivates boldface of the current font.
Notes
•This tag is not exported well on Web. Create and use a character style instead, e.g. >bold<.
•A bold member of the current font family must exist in the list of the GN4 fonts, otherwise, this tag will have no effect.
Parameters and typographical expressions
1.Toggle. Number 0 or 1. Value of 0 unbolds the text. Value of 1 bolds the text.
Tag Effects
Effects are visible in the WYSIWYG pane of the Articles main tab or on a page on the Pages main tab. Also, it is visible in the source pane of the Text Editor Ted4 if the Use video fonts box in the Preferences dialog box of the Text Editor Ted4 is checked, or in the source pane of the Page Editor Fred4 if the same box is checked in the Ted4 Preferences dialog box in the Page Editor Fred4.
Type and scope
Can be inserted anywhere in text. Local for the paragraph where is inserted, therefore effects cease on the end of that paragraph. May be globalized, by appending the >default< tag after, but only before any printable character.
See also
>bd 1< Applies boldface on the current font from the insertion point till the end of the current paragraph. Note: this requires the bold member of the font family to exist in GN4, otherwise, this tag will have no effect. >bd 0< Turns off the boldface of the current font. |
You can review and set bold in the Character palette, by selecting a bold member of the font family. Alternatively, click the "bold" icon in the toolbar, or press SHIFT+CTRL+B. |
The built-in command Text.EditFontBold applies bold. The related system script is EditFontBold. The built-in command Text.ToggleFontBold toggles bold. The related system script is ToggleFontBold. |
In Ted4 & Fred4 it is possible to set bold by the TextStatus object. To set bold: dim objTS = Text.GetTextStatus objTS.Reset objTS.Bold = true Text.SetTextStatus (objTS) To remove bold: dim objTS = Text.GetTextStatus objTS.Reset objTS.Bold = false Text.SetTextStatus (objTS) It is not possible to get the bold status by objects. |