Class ImageSavingEventArgs
Image saving events args for the ImageSaving event.
Inheritance
System.Object
ImageSavingEventArgs
Namespace: Syncfusion.SfImageEditor.XForms
Assembly: Syncfusion.SfImageEditor.XForms.dll
Syntax
public class ImageSavingEventArgs : EventArgs
Constructors
ImageSavingEventArgs(Stream)
Initializes a new instance of the ImageSavingEventArgs class.
Declaration
public ImageSavingEventArgs(Stream stream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | Stream. |
Properties
Cancel
Gets or sets a value indicating whether the event should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
FileName
Gets or sets the file name of the image.
Declaration
public string FileName { get; set; }
Property Value
Type |
---|
System.String |
Stream
Gets or sets the image stream.
Declaration
public Stream Stream { get; set; }
Property Value
Type |
---|
System.IO.Stream |