SetTextPr

SetTextPr(oTextPr) → { ApiTextPr }

Sets the text properties to the current run.

Parameters:

Name Type Description
oTextPr ApiTextPr

The text properties that will be set to the current run.

Returns:

Type
ApiTextPr

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text with the font size set to 30 and the font weight set to bold.");
oParagraph.AddElement(oRun);
var oTextPr = Api.CreateTextPr();
oTextPr.SetFontSize(30);
oTextPr.SetBold(true);
oRun.SetTextPr(oTextPr);
builder.SaveFile("docx", "SetTextPr.docx");
builder.CloseFile();

Resulting document