Defines a SharedComponent Variable component.
SharedComponent Variables help specifying variables of a SharedComponent.
Set the variable default value through the Variable value property.
Any typescript expression is valid:
• string (with quotes): 'monday'
• number: 2019
• boolean: true
• array: ['monday','friday']
• json: {name: 'wood', age: 35}
• object: this.myObject.data
To access within a shared component one of its SharedComponent Variable
from any child Action property or variable, use in script mode (TS):
• params<priority>.<variable-name>
where priority
is the shared component priority property
Name | Description |
---|---|
Comment | Describes the object comment to include in the documentation report. This property generally contains an explanation about the object. |
Is active | Defines whether the component is active. |
Variable value | Defines the default variable value. |