isActionVisible(name)
|
Returns the visibility/accessibility of the specified end-user feature.
Parameters
- name
-
Name of feature (String):
'Show Enlarged' 'Show Actual Size' 'Show' (in Selection Container) 'Hide' (in Selection Container) 'Remove' (right-click menu item in Selection Container) 'Properties' (right-click menu item) 'Edit' (right-click menu item for numerical Range Slider)
Example
if (RangeSlider1.isActionVisible('Properties')==true) {
Text1.text = 'Right-click for properties...';
}
|
Either syntax below can be used in component script:
For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required. |