| Visual Basic (Declaration) | |
|---|---|
<NotifyParentPropertyAttribute(True)> <DartDescriptionAttribute("The text displayed on the Upload control's Button. When using a ButtonType of ImageButton, this text is used for the 'alt' attribute of the image defined by ButtonImageUrl.")> <CategoryAttribute("Appearance")> <DefaultValueAttribute()> Public Property Text As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Upload Dim value As String instance.Text = value value = instance.Text | |
| C# | |
|---|---|
[NotifyParentPropertyAttribute(true)] [DartDescriptionAttribute("The text displayed on the Upload control's Button. When using a ButtonType of ImageButton, this text is used for the 'alt' attribute of the image defined by ButtonImageUrl.")] [CategoryAttribute("Appearance")] [DefaultValueAttribute()] public string Text {get; set;} | |
| C++/CLI | |
|---|---|
[NotifyParentPropertyAttribute(true)] [DartDescriptionAttribute("The text displayed on the Upload control's Button. When using a ButtonType of ImageButton, this text is used for the 'alt' attribute of the image defined by ButtonImageUrl.")] [CategoryAttribute("Appearance")] [DefaultValueAttribute()] public: property String^ Text { String^ get(); void set ( String^ value); } | |
Property Value
The default value is "Browse...".When using a ButtonType of ImageButton, this text is used for the 'alt' attribute of the image defined by ButtonImageUrl.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code