Sets the text properties to the current run.
Name | Type | Description |
oTextPr | ApiTextPr | The text properties that will be set to the current run. |
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();