Last update:
June 18, 2025
String Control Descriptor¶
This control is used to input short or long text values. You can configure it to allow single-line or multi-line input.
Property | Type | Description |
---|---|---|
multiline |
boolean | Allows entering text in multiple lines. |
Example¶
...
"settings": [
{
"id": "title",
"type": "string",
"label": "Title",
"placeholder": "Please enter title"
},
{
"id": "message",
"type": "string",
"label": "Message",
"placeholder": "Please enter message",
"multiline": true
},
...
]
...