Indicates whether the control can be themed.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.BrowsableAttribute(True)>
Public Overridable Property EnableTheming As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.Boolean
instance.EnableTheming = value
value = instance.EnableTheming |
C# | |
---|
[System.ComponentModel.BrowsableAttribute(true)]
public virtual System.bool EnableTheming {get; set;} |
Delphi | |
---|
public read-write property EnableTheming: System.Boolean; virtual; |
JScript | |
---|
System.ComponentModel.BrowsableAttribute()
public function get,set EnableTheming : System.boolean |
Managed Extensions for C++ | |
---|
[System.ComponentModel.BrowsableAttribute(true)]
public: __property virtual System.bool get_EnableTheming();
public: __property virtual void set_EnableTheming(
System.bool value
); |
C++/CLI | |
---|
[System.ComponentModel.BrowsableAttribute(true)]
public:
virtual property System.bool EnableTheming {
System.bool get();
void set ( System.bool value);
} |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also