| Visual Basic (Declaration) | |
|---|---|
<DefaultValueAttribute()> <CategoryAttribute("Appearance")> <DescriptionAttribute("Whether to show the control's footer.")> Public Overrides Property ShowFooter As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As LiveDataGrid Dim value As Boolean instance.ShowFooter = value value = instance.ShowFooter | |
| C# | |
|---|---|
[DefaultValueAttribute()] [CategoryAttribute("Appearance")] [DescriptionAttribute("Whether to show the control's footer.")] public override bool ShowFooter {get; set;} | |
| C++/CLI | |
|---|---|
[DefaultValueAttribute()] [CategoryAttribute("Appearance")] [DescriptionAttribute("Whether to show the control's footer.")] public: property bool ShowFooter { bool get() override; void set ( bool value) override; } | |
This member is functionally equivalent to System.Web.UI.WebControls.DataGrid.ShowFooter.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code