SetTag
Sets the tag attribute to the current form.
Syntax
expression.SetTag(tag);
expression - A variable that represents a ApiComplexForm class.
Parameters
| Name | Required/Optional | Data type | Default | Description | 
|---|---|---|---|---|
| tag | Required | string | The tag which will be added to the current container. | 
Returns
boolean
Example
This example shows how to set the tag of a form element.
- Code
 - Result
 
const doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
const textForm = 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
});
textForm.SetTag('MY_TAG');
paragraph.AddElement(textForm);
const formTag = textForm.GetTag();
paragraph = Api.CreateParagraph();
paragraph.AddText("Form tag: " + formTag);
doc.Push(paragraph);