Class ImageSavingEventArgs
Provides data for the ImageSaving event.
Inheritance
System.Object
ImageSavingEventArgs
Namespace: Syncfusion.Maui.ImageEditor
Assembly: Syncfusion.Maui.ImageEditor.dll
Syntax
public class ImageSavingEventArgs : CancelEventArgs
Constructors
ImageSavingEventArgs()
Initializes a new instance of the ImageSavingEventArgs class.
Declaration
public ImageSavingEventArgs()
Properties
FileName
Gets or sets the file name of the image.
Declaration
public string FileName { get; set; }
Property Value
Type |
---|
System.String |
FilePath
Gets or sets the file path of the image.
Declaration
public string FilePath { get; set; }
Property Value
Type |
---|
System.String |
FileType
Gets or sets the image file type.
Declaration
public ImageFileType FileType { get; set; }
Property Value
Type |
---|
ImageFileType |
ImageStream
Gets the image stream.
Declaration
public Stream ImageStream { get; }
Property Value
Type |
---|
System.IO.Stream |