| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Behavior")> <DefaultValueAttribute()> <DescriptionAttribute("When set to false, the control is rendered, but hidden.")> Public Overrides Property Visible As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As LivePanel Dim value As Boolean instance.Visible = value value = instance.Visible | |
| C# | |
|---|---|
[CategoryAttribute("Behavior")] [DefaultValueAttribute()] [DescriptionAttribute("When set to false, the control is rendered, but hidden.")] public override bool Visible {get; set;} | |
| C++/CLI | |
|---|---|
[CategoryAttribute("Behavior")] [DefaultValueAttribute()] [DescriptionAttribute("When set to false, the control is rendered, but hidden.")] public: property bool Visible { bool get() override; void set ( bool value) override; } | |
Property Value
true if the control is visible on the page; otherwise false. The default is true.Use the Visible property to specify or determine whether a control is visible. When set to false, the control is rendered, but is hidden.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code