bdeGetBlockParameterVisibility
Returns whether or not a parameter of a given block is visible.
Syntax
visibility = bdeGetBlockParameterVisibility(block, parameter)
Inputs
- block
- The block to that the parameter is in.
- parameter
- The parameter to check the visibility of.
Outputs
- visibility
- String that represents whether or not the parameter is visible. 1 for visible and 0 for not visible.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
visibility = bdeGetBlockParameterVisibility(block, 'gain');
visibility = 1