Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Property defined in non-stateful POU type

Properties may only be defined in stateful POUs such as a PROGRAM,CLASS or FUNCTION_BLOCK.

Errouneus code example:

FUNCTION foo
    // Invalid definition
    PROPERTY_GET bar: DINT
        bar := 42;
    END_PROPERTY
END_FUNCTION