Class FileUploadChangeEventArgs
Provides information about a FileUploadChange event.
Inherited Members
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileUploadChangeEventArgs
Remarks
This class details the process and status of media files prepared for upload into the editor, influencing content development.
Constructors
FileUploadChangeEventArgs()
Declaration
public FileUploadChangeEventArgs()
Properties
FileUrl
Gets or sets the media URL to be inserted into the editor content.
Declaration
public string? FileUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string reflecting the media's resource URL. |
Remarks
FileUrl acts as a reference point for embedding media resources directly within the editor text.
Files
Gets the list of media files that will be uploaded.
Declaration
public List<UploadFiles>? Files { get; }
Property Value
| Type | Description |
|---|---|
| List<UploadFiles> | A list of UploadFiles denoting files for uploading. |
Remarks
The Files property offers insight into digital assets provisioned for incorporation into the document.