SetText
function SetText(sText: string = null): boolean
Description
Sets the text to the current text field.
Parameters
- sText
string
null The text that will be set to the current text field.
Returns
boolean
Try It
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);
oTextForm.SetText("John Smith");