SetFontFamily

SetFontFamily(sFontFamily) → { ApiTextPr }

Sets all 4 font slots with the specified font family.

Parameters:

Name Type Description
sFontFamily string

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

Returns:

Type
ApiTextPr

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetFontFamily("Comic Sans MS");
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("A sample text with the font family set to 'Comic Sans MS' using the text properties.");
builder.SaveFile("docx", "SetFontFamily.docx");
builder.CloseFile();

Resulting document