ClassZoomChangingEventArgs
Event arguments indicating the old and new horizontal/vertical scale factors.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class ZoomChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsZoomChangingEventArgs
Inherited Members
Constructors
ZoomChangingEventArgs(double, double)
Initializes a new instance of the ZoomChangingEventArgs class.
ZoomChangingEventArgs(double, double, double, double)
Initializes a new instance of the ZoomChangingEventArgs class.
Declaration
public ZoomChangingEventArgs(double newHorizontalScaleFactor, double newVerticalScaleFactor, double oldHorizontalScaleFactor, double oldVerticalScaleFactor)
Parameters
newHorizontalScaleFactor
newVerticalScaleFactor
oldHorizontalScaleFactor
oldVerticalScaleFactor
Properties
NewHorizontalScaleFactor
Gets or sets the new horizontal scale factor.
Declaration
public double NewHorizontalScaleFactor { get; set; }
Property Value
NewVerticalScaleFactor
Gets or sets the new vertical scale factor.
Declaration
public double NewVerticalScaleFactor { get; set; }
Property Value
OldHorizontalScaleFactor
Gets or sets the old horizontal scale factor.
Declaration
public double OldHorizontalScaleFactor { get; set; }
Property Value
OldVerticalScaleFactor
Gets or sets the old vertical scale factor.
Declaration
public double OldVerticalScaleFactor { get; set; }
Property Value