Attribute 'ExpandFully'

The pragma causes the components of an array, which is used as input variable for referenced visualizations, to be visualized in the visualization properties dialog.

Syntax: {attribute 'ExpandFully'}

Insertion location: Line above the declaration line of the array

Example:

Visualization visu is to be inserted in a frame within the visualization visu_main. aSample is defined as input variable in the interface editor of visu and is will therefore be available later for assignments in the properties dialog of the frame in visu_main. To also have the individual components of aSample available in this properties dialog, you must insert the 'ExpandFully' attribute in the interface editor of visu directly before aSample. Declaration in the interface editor of visu:

VAR_INPUT 
    {attribute 'ExpandFully'} 
    aSample : ARRAY[0..5] OF INT; 
END_VAR 
Attribute 'ExpandFully' 1: