Class FileOpenEventArgs
Provides the information about the FileOpened event callback.
Inheritance
System.Object
FileOpenEventArgs
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileOpenEventArgs : Object
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 |
---|---|
System.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 Nullable<ImageEditorFileType> FileType { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ImageEditorFileType> | An enumeration value ImageEditorFileType that represents the file type of the image to be opened. The available file types are JPEG, PNG, and SVG. |