bdeShowBlockParameter
Sets the visibility of parameter within block to be visible. Works with inline blocks. Super blocks are inlined blocks.
Syntax
bdeShowBlockParameter(block, parameter)
Inputs
- block
 - The block that the parameter is in.
 - parameter
 - The parameter to set the visibility to true.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeShowBlockParameter(block, 'testParam');