SetBold
function SetBold(isBold: boolean = null): ApiParagraph
Description
Sets the bold property to the text character.
Parameters
- isBold
boolean
null Specifies that the contents of this paragraph are displayed bold.
Returns
ApiParagraph
Try It
var oDocument = editor.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a paragraph with the font set to bold.");
oParagraph.SetBold(true);