bdeHandlerInfoClickedOnFMUBlockDialog

Shows a dialog box with information about the FMU dialog box's attributes, values, and variables. There must be a FMU file entered in the FMU file name parameter of the FMU dialog box, otherwise no info box will be shown. If a non-FMU dialog box is given it will show an empty FMU info dialog box.

Syntax

bdeHandlerInfoClickedOnFMUBlockDialog(dialog)

Inputs

dialog
The dialog box that will be used to get the handler information.
Type: dialog

Examples

Get information about an FMU dialog box for a FMU block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          widget = bdeGetTopLevelWidget();
          dialog = bdeCreateBlockParametersDiaglogFromBlock(block, widget, false);
          bdeHandlerInfoClickedOnFMUBlockDialog(dialog);