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