SetFontSize

SetFontSize(FontSize) → { ApiRange | null }

Sets the font size to the characters of the current text Range.

Parameters:

Name Type Description
FontSize hps

The text size value measured in half-points (1/144 of an inch).

Returns:

Type
ApiRange | null

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("ONLYOFFICE Document Builder");
var oRange = oDocument.GetRange(0, 24);
oRange.SetFontSize(14);
builder.SaveFile("docx", "SetFontSize.docx");
builder.CloseFile();

Resulting document