Skip to main content

Attribute: ProcessValue

With the 'ProcessValue' attribute, you decorate a member of a structure. In the CFC editor, you can then use the Use Attributed Members as Input command in order to connect this structure to an input of scalar type.

Syntax:

{attribute 'ProcessValue'}

Insert location: Line above the affected structure members.

Example 288. Example
TYPE QINT :
STRUCT
    Status : STRING;
    {attribute 'ProcessValue'}
    Value1 : INT;
    Value2 : INT;
END_STRUCT
END_TYPE