Class ZoomChangeEventArgs
This event arguments provides the necessary information about zoom change event.
Implements
System.IEquatable<ZoomChangeEventArgs>
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class ZoomChangeEventArgs : BaseEventArgs<ZoomChangeEventArgs>, IEquatable<ZoomChangeEventArgs>
Constructors
ZoomChangeEventArgs()
Declaration
public ZoomChangeEventArgs()
Properties
CurrentZoomValue
Gets the current zoom percentage value.
Declaration
public int CurrentZoomValue { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PreviousZoomValue
Gets the zoom value before change.
Declaration
public int PreviousZoomValue { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>