Symbol: ; keyboard shortcut: Alt+F6.
Function: The command opens and closes the Interface Editor tab above the visualization editor.
Call: Menu bar:
Also by clicking on the small down arrow at the top of the visualization editor
Symbol:
The tab contains an editor for the declaration of interface variables. The editor behaves in a similar way to the declaration editor of a function block, however interface variables are not initialized.
Syntax
<scope>
( {attribute '<attribute name>' ( := '<expression>' )? } )?
<identifier> : <data type>;
END_VAR
<scope> : VAR_INPUT | VAR_OUTPUT | VAR_IN_OUT
// (...)? : Optional
Possible scopes for interfaces of visualizations or dialogs
|
Note: In the case of dialogs, the data is written back only when the dialog is closed. Hint: We strongly recommend that you use this scope so that the return of values is possible. Moreover, no data needs to be copied. |
Pragma |
When transferring a pointer to a data object
In contrast to the Note: Use this scope only if the visualization implements a Dialog. |
|
When transferring data that will only be read Note:
|
Pragma |
When transferring a variable (data type |
See also