|
|
|
SftMask.ThemeStyle Property |
Defines the theme style of the control (if UseThemes enabled).
Syntax
VB.NET |
Style = object.ThemeStyle As SftMaskThemeStyleConstants |
||
VB |
Style = object.ThemeStyle As SftMaskThemeStyleConstants |
||
C#.NET |
SftMaskThemeStyleConstants Style = object.ThemeStyle; |
||
VC++ |
enum SftMaskThemeStyleConstants Style = object->ThemeStyle;
|
||
C |
HRESULT object->get_ThemeStyle(enum SftMaskThemeStyleConstants* Style); |
||
Delphi |
Style := object.ThemeStyle : TOleEnum; |
||
VB.NET |
object.ThemeStyle = Style As SftMaskThemeStyleConstants |
||
VB |
object.ThemeStyle = Style As SftMaskThemeStyleConstants |
||
C#.NET |
SftMaskThemeStyleConstants object.ThemeStyle = Style; |
||
VC++ |
enum SftMaskThemeStyleConstants object->ThemeStyle = Style;
|
||
C |
HRESULT object->put_ThemeStyle(enum SftMaskThemeStyleConstants Style); |
||
Delphi |
object.ThemeStyle := Style : TOleEnum; |
object
A SftMask object.
Style
Defines the theme style of the control (if UseThemes enabled).
Name |
Value |
Description |
0 |
Strict - The BackColor and BackColorInvalid properties are not honored. |
|
1 |
Allow BackColor Override - The BackColor and BackColorInvalid properties are honored. |
|
2 |
VB6-Style - A disabled or locked control uses the same background color as a disabled or locked VB6 edit control. The BackColor and BackColorInvalid properties are not honored. |
|
3 |
VB6-Style, Allow BackColor Override - A disabled or locked control uses the same background color as a disabled or locked VB6 edit control. The BackColor and BackColorInvalid properties are honored. |
Comments
The ThemeStyle property defines the theme style of the control (if UseThemes enabled).
This property only takes effect if Windows themes are used and the UseThemes property is set to True.