bdeGetPropertyValue

Returns the value for a given property of block.

Syntax

propertyValue = bdeGetPropertyValue(block, property)

Inputs

block
The block to get the property value from.
Type: block
property
The name of the property to get the value of. Can use 'atomic', 'inlinable', 'masked'.
Type: string

Outputs

propertyValue
The value of the property in block.
Type: string

Examples

Get the value of property in block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          propertyValue = bdeGetPropertyValue(block, 'inlinable');
        

          
            propertyValue = y