Versions Compared

Key

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

...

FORECOLOR propertyGRADIENTSTYLE propertyCHOOSECOLOR Utility() service

Example

Code Block
* Example 1:  sets the color for CtrlEntID
Color  = Get_Property(CtrlEntID, "BACKCOLOR")
Parent = CtrlEntID [1,"."]
Color  = Utility("CHOOSECOLOR", Parent, Color)
if len(Color) then
  Set_Property(CtrlEntID, "BACKCOLOR", Color)
end

...