Class ImageSavingEventArgs
Class which represents the image saving event arguments.
Inheritance
System.Object
ImageSavingEventArgs
Namespace: Syncfusion.UI.Xaml.ImageEditor
Assembly: Syncfusion.SfImageEditor.WPF.dll
Syntax
public class ImageSavingEventArgs : CancelEventArgs
Constructors
ImageSavingEventArgs(Stream)
Initializes a new instance of theImageSavingEventArgs class.
Declaration
public ImageSavingEventArgs(Stream stream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | The stream. |
Properties
FileName
Gets or sets the file name of the image.
Declaration
public string FileName { get; set; }
Property Value
Type |
---|
System.String |
Stream
To get the stream of the saving image.
Declaration
public Stream Stream { get; set; }
Property Value
Type |
---|
System.IO.Stream |