SetFontFamily

function SetFontFamily(sFontFamily: string = null): ApiTextPr

Description

Sets all 4 font slots with the specified font family.

Parameters

sFontFamilystringdefault: null

The font family or families used for the current text run.

Returns

ApiTextPr

Overloads

SetFontFamily(sFontFamily)

Sets all 4 font slots with the specified font family.

Try It

var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. ");
oParagraph.AddElement(oRun);
oRun = Api.CreateRun();
oRun.SetFontFamily("Calibri Light");
oRun.AddText("This is a text run with the font family set to 'Calibri Light'.");
oParagraph.AddElement(oRun);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).