Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ValueDescription
ControlIDsIdentifiers for all controls belonging to the specified window.

See also

Utility("OBJECTLIST")

Example

Code Block
* (in some stored procedure, like a button click)

Declare Function Get_Property, Set_Property
Map = Get_Property(@WINDOW, "CTRLMAP")

* assuming the first control in the tab order has a TEXT property
rslt = Set_Property(Map<1>, "TEXT", "Change Me")
return 0

...