Sets the text properties to the current form. Used if possible for this type of form
Name | Type | Description |
oTextPr | ApiTextPr | The text properties that will be set to the current form. |
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oTextForm = Api.CreateTextForm({"key": "Personal information", "tip": "Enter your first name", "required": true, "placeholder": "First name", "comb": true, "maxCharacters": 10, "cellWidth": 3, "multiLine": false, "autoFit": false}); var oParagraph = oDocument.GetElement(0); oParagraph.AddElement(oTextForm); var oTextPr = Api.CreateTextPr(); oTextPr.SetFontSize(30); oTextPr.SetBold(true); oTextForm.SetTextPr(oTextPr); builder.SaveFile("docx", "SetTextPr.docx"); builder.CloseFile();