|
|
|
SftMaskCaption.Transparent Property |
Defines whether the caption area is transparent.
Syntax
VB.NET |
Boolean = object.Transparent As Boolean |
||
VB |
Boolean = object.Transparent As Boolean |
||
C#.NET |
bool Boolean = object.Transparent; |
||
VC++ |
VARIANT_BOOL Boolean = object->Transparent;
|
||
C |
HRESULT object->get_Transparent(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.Transparent : WordBool; |
||
VB.NET |
object.Transparent = Boolean As Boolean |
||
VB |
object.Transparent = Boolean As Boolean |
||
C#.NET |
bool object.Transparent = Boolean; |
||
VC++ |
VARIANT_BOOL object->Transparent = Boolean;
|
||
C |
HRESULT object->put_Transparent(VARIANT_BOOL Boolean); |
||
Delphi |
object.Transparent := Boolean : WordBool; |
object
A SftMaskCaption object.
Boolean
Defines whether the caption area is transparent.
Boolean |
Description |
True |
The caption area is transparent. |
False |
The caption area not is transparent. |
Comments
The Transparent property defines whether the caption area is transparent.
The built-in caption can be rendered transparent, in which case the background of the enclosing window (form or dialog) is used as the caption's background and the defined background color Caption.BackColor is ignored.
Some development tools do not reflect transparency in design-time mode. While the property can be set at design-time, visually it will only take effect at run-time.