Class ImageUploadChangeEventArgs
Provides information about an ImageUploadChange event.
Inherited Members
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ImageUploadChangeEventArgs
Remarks
This class offers details on image files ready for upload and their subsequent integration into editor content.
Constructors
ImageUploadChangeEventArgs()
Declaration
public ImageUploadChangeEventArgs()
Properties
Files
Gets the list of image files that will be uploaded.
Declaration
public List<UploadFiles>? Files { get; set; }
Property Value
| Type | Description |
|---|---|
| List<UploadFiles> | A list of UploadFiles representing image data for upload. |
Remarks
The Files property is essential for assessing and managing images prior to their inclusion in the editor.
ImageUrl
Gets or sets the image URL to be inserted into the editor content.
Declaration
public string? ImageUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string indicating the URL of the image. |
Remarks
ImageUrl allows for the direct linking and display of uploaded images, streamlining content enhancement.