FormPrBase
type FormPrBase = object
Description
Common form properties.
Properties
- key
string
null Form key.
- tip
string
null Form tip text.
- tag
string
null Form tag.
- required
boolean
null Specifies if the form is required or not.
- placeholder
string
null Form placeholder text.
Try It
var oFormPrBase = {"key": "Personal information", "tip": "Enter your first name", "required": true, "placeholder": "First name"};
var oTextForm = Api.CreateTextForm(oFormPrBase);