SetTextPr
Sets the text properties to the current form. Used if possible for this type of form
Inherited from ApiFormBase.SetTextPr.
Example
Apply custom text formatting to a form field in a document.
// How do I change the font size and style of text inside a form field in a document?
// Make form field text bold and larger to improve readability.
let doc = Api.GetDocument();
let textForm = 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});
let paragraph = doc.GetElement(0);
paragraph.AddElement(textForm);
let textPr = Api.CreateTextPr();
textPr.SetFontSize(30);
textPr.SetBold(true);
textForm.SetTextPr(textPr);