ClassUploadCancelableEventArgs
Class
Provides event data for cancelable upload events, such as upload, remove, or select. Set IsCancelled
to true
to prevent the default action. Used in OnUpload, OnRemove, and related events.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
cs-api-definition
public class UploadCancelableEventArgs : UploadEventArgsBase
Inheritance: objectUploadEventArgsBaseUploadCancelableEventArgs
Derived Classes:
Constructors
UploadCancelableEventArgs()
Declaration
cs-api-definition
public UploadCancelableEventArgs()
Properties
IsCancelled
Set to true
to cancel the event and prevent the default upload or remove action. Example: args.IsCancelled = true;
.