getProperty
Last updated
Last updated
Returns the attribute of a component, such as its name, dimensions etc.
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
component | The name of the component to get property from. | String/Text | - | - | Yes |
property | The attribute of the component. | String/Text | - | - | Yes |
Description | Output Type |
---|---|
Returns the property of the component. | String/Text |
In this example, we will get the name attribute of an input box component using Component.getProperty
and print it to the console.
First we drag an input box onto the page. We will name it "InputBox" with the value "This is an input field".
We want to get the 'name' attribute of "InputBox" and display it in the browser console with the help of the Log.write
helper function.
Drag Component.getProperty
into the event flow, and specify the name of the component, which in this case is "InputBox".
The name
attribute of "InputBox" will be displayed in the browser console.
See also:
Functions