Class PanChangingEventArgs
Event arguments indicating the old and new X/Y offset.
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class PanChangingEventArgs : CancelEventArgs
Constructors
PanChangingEventArgs(Double, Double)
Initializes a new instance of the PanChangingEventArgs class.
Declaration
public PanChangingEventArgs(double newOffsetX, double newOffsetY)
Parameters
System.Double
newOffsetX
The new offset X. |
System.Double
newOffsetY
The new offset Y. |
PanChangingEventArgs(Double, Double, Double, Double)
Initializes a new instance of the PanChangingEventArgs class.
Declaration
public PanChangingEventArgs(double newOffsetX, double newOffsetY, double oldOffsetX, double oldOffsetY)
Parameters
System.Double
newOffsetX
The new offset X. |
System.Double
newOffsetY
The new offset Y. |
System.Double
oldOffsetX
The old offset X. |
System.Double
oldOffsetY
The old offset Y. |
Properties
NewOffsetX
Gets or sets the new offset X.
Declaration
public double NewOffsetX { get; set; }
Property Value
System.Double
The new offset X. |
NewOffsetY
Gets or sets the new offset Y.
Declaration
public double NewOffsetY { get; set; }
Property Value
System.Double
The new offset Y. |
OldOffsetX
Gets or sets the old offset X.
Declaration
public double OldOffsetX { get; set; }
Property Value
System.Double
The old offset X. |
OldOffsetY
Gets or sets the old offset Y.
Declaration
public double OldOffsetY { get; set; }
Property Value
System.Double
The old offset Y. |