The syntax for using properties in PowerCOBOL procedures is:
"Property-name" OF Control-name
For example to change the Caption property of the static text control "StaticText1" to the value in data item WORK-1 you code:
MOVE WORK-1 TO "Caption" OF StaticText1.
Where WORK-1 is an alphanumeric item.