Top
PowerCOBOL V11.0 Reference
FUJITSU Software

4.1.2 Using Properties in PowerCOBOL Procedures

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.