GetWrapperShape
Returns a shape in which the form is placed to control the position and size of the fixed size form frame. The null value will be returned for the inline forms.
Syntax
expression.GetWrapperShape();
expression
- A variable that represents a ApiTextForm class.
Parameters
This method doesn't have any parameters.
Returns
Example
This example shows how to get a shape in which the form is placed to control the position and size of the fixed size form frame.
let doc = Api.GetDocument();
let 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});
let paragraph = doc.GetElement(0);
paragraph.AddElement(textForm);
textForm.ToFixed(10 * 240, 2 * 240);
let shape = textForm.GetWrapperShape();
let stroke = Api.CreateStroke(36000, Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61)));
shape.SetOutLine(stroke);