Font (Very Important!!!) |
Use Unicode
Fonts like
Arial Unicode MS Check also this page |
Text Property Panel |
Permits you to use UNICODE strings in design mode for Caption,Tip and Text properties, don't use the VB6 property panel because it's ANSI only! |
Picture Property Panel | Use this property panel for loading transparent and 32bpp alpha images (also .png and .tga are supported) |
Tip | Unicode tooltip, don't use the ToolTipText VB6 property |
BackColor / ForeColor | colors of the control |
BorderColor | the color of the border (default=-1&)* |
SelBackColor / SelForeColor | colors of the selector (lists, menus, combo, grid, etc...) |
SelectorStyle | Style of the selector ** |
RoundSelector | Is the selector rounded? |
RoundedBorders | Are the corners rounded? *** |
Style | Widget style ** |
UseRoundRegions | Use a region for making the control rounded (By using a region you'll force Windows to use ad additional GDI object for every control you draw on the page but you don't need to use the BackColorOut property) *** |
BackColorOut | When using rounded borders represents the color external of the border but internal of the control (default=-1&, you don't need to use this property if you don't use RoundedBorders or if you use the UseRoundRegions property. This property permits you to avoid the use of an additional Windows GDI objects when using round controls) * - *** |
Caption | This is the
text of the
control; Button, Check and Radio support AccessKeys: simply use the '&' char before the letter you want to use as AccessKey (ALT + Letter). Use && if you wish to display the & char into the Caption property. |