Syntax
| Visual Basic (Declaration) | |
|---|
<DefaultValueAttribute()>
<BrowsableAttribute(False)>
<DevExpressUtilsLocalizedDescriptionAttribute("Gets or sets whether the form's Close button (x) is visible. This property is in effect when the Form Title Bar Skinning feature is enabled.")>
Public Overridable Property CloseBox As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As MainForm
Dim value As Boolean
instance.CloseBox = value
value = instance.CloseBox |
| C# | |
|---|
[DefaultValue()]
[Browsable(false)]
[DevExpressUtilsLocalizedDescription("Gets or sets whether the form's Close button (x) is visible. This property is in effect when the Form Title Bar Skinning feature is enabled.")]
public virtual bool CloseBox {get; set;} |
| Managed Extensions for C++ | |
|---|
[DefaultValue()]
[Browsable(false)]
[DevExpressUtilsLocalizedDescription("Gets or sets whether the form's Close button (x) is visible. This property is in effect when the Form Title Bar Skinning feature is enabled.")]
public: __property virtual bool get_CloseBox();
public: __property virtual void set_CloseBox(
bool value
); |
| C++/CLI | |
|---|
[DefaultValue()]
[Browsable(false)]
[DevExpressUtilsLocalizedDescription("Gets or sets whether the form's Close button (x) is visible. This property is in effect when the Form Title Bar Skinning feature is enabled.")]
public:
virtual property bool CloseBox {
bool get();
void set ( bool value);
} |
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP, Windows Vista, Windows Server 2003 family
See Also