Class ImageUploadChangeEventArgs
Provides information about an ImageUploadChange event.
Inheritance
System.Object
ImageUploadChangeEventArgs
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ImageUploadChangeEventArgs : Object
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 |
---|---|
System.Collections.Generic.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 |
---|---|
System.String | A string indicating the URL of the image. |
Remarks
ImageUrl allows for the direct linking and display of uploaded images, streamlining content enhancement.