Gets or sets whether a triggering button's click event is fired.
Syntax
Visual Basic (Declaration) | |
---|
<DefaultValueAttribute()>
<DartDescriptionAttribute("When set to true and an upload is triggered from a standard ASP.NET Button, ImageButton, or LinkButton click, that control's Click event will be raised when the upload operation is complete.")>
Public Property RaiseButtonClick As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As UploadManager
Dim value As Boolean
instance.RaiseButtonClick = value
value = instance.RaiseButtonClick |
C# | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("When set to true and an upload is triggered from a standard ASP.NET Button, ImageButton, or LinkButton click, that control's Click event will be raised when the upload operation is complete.")]
public bool RaiseButtonClick {get; set;} |
C++/CLI | |
---|
[DefaultValueAttribute()]
[DartDescriptionAttribute("When set to true and an upload is triggered from a standard ASP.NET Button, ImageButton, or LinkButton click, that control's Click event will be raised when the upload operation is complete.")]
public:
property bool RaiseButtonClick {
bool get();
void set ( bool value);
} |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also