| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Behavior")> <DefaultValueAttribute()> <DescriptionAttribute("The command associated with the button.")> Public Overridable Property CommandName As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As LiveButtonColumn Dim value As String instance.CommandName = value value = instance.CommandName | |
| C# | |
|---|---|
[CategoryAttribute("Behavior")] [DefaultValueAttribute()] [DescriptionAttribute("The command associated with the button.")] public virtual string CommandName {get; set;} | |
| C++/CLI | |
|---|---|
[CategoryAttribute("Behavior")] [DefaultValueAttribute()] [DescriptionAttribute("The command associated with the button.")] public: virtual property String^ CommandName { String^ get(); void set ( String^ value); } | |
This member is functionally equivalent to System.Web.UI.WebControls.ButtonColumn.CommandName.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code