Class FileOpenEventArgs
Provides the information about the FileOpened event callback.
Inherited Members
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileOpenEventArgs
Constructors
FileOpenEventArgs()
Declaration
public FileOpenEventArgs()
Properties
FileName
Gets the file name of the image to be opened in the SfImageEditor.
Declaration
public string FileName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string value that represents the file name of the image to be opened. |
FileType
Gets the file type of the image to be opened in the SfImageEditor.
Declaration
public ImageEditorFileType? FileType { get; set; }
Property Value
| Type | Description |
|---|---|
| ImageEditorFileType? | An enumeration value ImageEditorFileType that represents the file type of the image to be opened. The available file types are JPEG, PNG, SVG, and WebP. |