SetBold

SetBold(isBold) → { ApiParagraph }

Sets the bold property to the text character.

Parameters:

Name Type Description
isBold boolean

Specifies that the contents of this paragraph are displayed bold.

Returns:

Type
ApiParagraph

Example

Copy code
builder.CreateFile("docx");
var oDocument = editor.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a paragraph with the font set to bold.");
oParagraph.SetBold(true);
builder.SaveFile("docx", "SetBold.docx");
builder.CloseFile();

Resulting document