Versions Compared

Key

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

...

Member of Group Box (PRIM_GPBX)

Data Type - Unicode String

...

In this example, the three buttons are using 3 different ThemeDrawStyles. The first two button use DarkTitle and MediumTitle, which are predefined and are therefore always available. The third button uses DrawStyleXXX which in this scenario is undefined. The button therefore adopts the default appearance for buttons in this theme.

     Begin_Com Role(*EXTENDS #PRIM_WEB) Height(600) Width(824) Theme(#SYS_THEME<2015Indigo>) 

Define_Com Class(#PRIM_PHBN) Name(#Button1) Caption('Button1') Displayposition(3) Left(80) Parent(#COM_OWNER) Tabposition(3) Top(46) Height(51) Width(129) Themedrawstyle('DarkTitle')
Define_Com Class(#PRIM_PHBN) Name(#Button2) Caption('Button2') Displayposition(2) Left(240) Parent(#COM_OWNER) Tabposition(2) Top(48) Height(51) Width(129) Themedrawstyle('MediumTitle')
Define_Com Class(#PRIM_PHBN) Name(#Button3) Caption('Button3') Displayposition(1) Left(400) Parent(#COM_OWNER) Tabposition(1) Top(48) Height(51) Width(129) Themedrawstyle('DrawStyleXXX')

End_Com

See also

All Component Classes

Technical Reference