bdeGetBlockParameterTooltip
Returns a description of a parameter in a given block that is useful for understanding the parameters.
Syntax
paramTip = bdeGetBlockParameterTooltip(block, parameter)
Inputs
- block
- The block that the parameter is in.
- parameter
- The parameter to get the description of.
Outputs
- paramTip
- A description of the given parameter. Includes what the parameter is used for as well as options of what arguments can be used.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
paramTip = bdeGetBlockParameterTooltip(block, 'overflow');
paramTip = Defines the action in case of an overflow during the operation. Options are : "Nothing" (gives a normal, non satured result), "Saturate" (gives a saturated result), "Error" (gives an error message).