CreateTextForm

CreateTextForm(oFormPr) → { ApiTextForm }

Creates a text field with the specified text field properties.

Parameters:

Name Type Description
oFormPr TextFormPr

Text field properties.

Returns:

Type
ApiTextForm

Example

Copy code
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);
builder.SaveFile("docxf", "CreateTextForm.docxf");
builder.CloseFile();

Resulting document