Attribute 'TcHideSubItems'
This pragma can be used to define which subelements of a variable are to be hidden. These are then no longer visible in the process image of the Solution Explorer.
Syntax: {attribute 'TcHideSubItems'}
Insertion location: Line above the declaration of the subelement
Example:
TYPE DUT :
STRUCT
a : INT;
{attribute 'TcHideSubItems'}
b : ARRAY [0..20000] OF BYTE;
END_STRUCT
END_TYPE
The attribute "TcHideSubItems" only creates the variable "b" and no longer also b[0], b[1], b[2]... b[19999]
in the Solution Explorer.