Class ZoomChangedEventArgs
Provides data for the ZoomChanged event.
Inheritance
System.Object
ZoomChangedEventArgs
Namespace: Syncfusion.Windows.PdfViewer
Assembly: Syncfusion.SfPdfViewer.UWP.dll
Syntax
public class ZoomChangedEventArgs : EventArgs
Constructors
ZoomChangedEventArgs(Int32, Int32)
Creates a new instance of the ZoomChangedEventArgs class.
Declaration
public ZoomChangedEventArgs(int oldZF, int newZF)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | oldZF | The zoom factor before the event. |
System.Int32 | newZF | The zoom factor after the event. |
Properties
NewZoomFactor
The zoom factor to which the document is zoomed to.
Declaration
public int NewZoomFactor { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
OldZoomFactor
The zoom factor from which the zooming was initiated.
Declaration
public int OldZoomFactor { get; }
Property Value
Type | Description |
---|---|
System.Int32 |