| Visual Basic (Declaration) | |
|---|---|
<DescriptionAttribute("The text displayed on the button.")> <DefaultValueAttribute()> <CategoryAttribute("Behavior")> Public Overrides Property Text As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As LiveLinkButton Dim value As String instance.Text = value value = instance.Text | |
| C# | |
|---|---|
[DescriptionAttribute("The text displayed on the button.")] [DefaultValueAttribute()] [CategoryAttribute("Behavior")] public override string Text {get; set;} | |
| C++/CLI | |
|---|---|
[DescriptionAttribute("The text displayed on the button.")] [DefaultValueAttribute()] [CategoryAttribute("Behavior")] public: property String^ Text { String^ get() override; void set ( String^ value) override; } | |
This member is functionally equivalent to System.Web.UI.WebControls.LinkButtonClass.Text.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code