Class ZoomChangingEventArgs
Event arguments indicating the old and new horizontal/vertical scale factors.
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class ZoomChangingEventArgs : CancelEventArgs
Constructors
ZoomChangingEventArgs(Double, Double)
Initializes a new instance of the ZoomChangingEventArgs class.
Declaration
public ZoomChangingEventArgs(double newHorizontalScaleFactor, double newVerticalScaleFactor)
Parameters
System.Double
newHorizontalScaleFactor
|
System.Double
newVerticalScaleFactor
|
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
System.Double
newHorizontalScaleFactor
|
System.Double
newVerticalScaleFactor
|
System.Double
oldHorizontalScaleFactor
|
System.Double
oldVerticalScaleFactor
|
Properties
NewHorizontalScaleFactor
Gets or sets the new horizontal scale factor.
Declaration
public double NewHorizontalScaleFactor { get; set; }
Property Value
System.Double
|
NewVerticalScaleFactor
Gets or sets the new vertical scale factor.
Declaration
public double NewVerticalScaleFactor { get; set; }
Property Value
System.Double
|
OldHorizontalScaleFactor
Gets or sets the old horizontal scale factor.
Declaration
public double OldHorizontalScaleFactor { get; set; }
Property Value
System.Double
|
OldVerticalScaleFactor
Gets or sets the old vertical scale factor.
Declaration
public double OldVerticalScaleFactor { get; set; }
Property Value
System.Double
|