Syntax:
BA_createTextArea(label, defaultValue, isDisabled [, rows])
Since version 2.0.8 and 2.6.1:
BA_createTextArea(label, defaultValue, isDisabled [, rows[, isRequired, fieldDescription]])
Description:
Creates a textarea suitable for longer text values like comments.Parameters:
Parameter name | Type | Required | Description |
---|---|---|---|
label | string | Yes | Specifies a label for the field |
nmb | number | Yes | Specifies the number of characters returned from the character expression str. |
Return type:
string
Examples:
Example 1:
wret = chop("Once upon a time", 6); print(wret);
Print Once u