New to Telerik UI for WinFormsStart a free 30-day trial

Event arguments indicating the old and new X/Y offset.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

C#
public class PanChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsPanChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the PanChangingEventArgs class.

C#
public PanChangingEventArgs(double newOffsetX, double newOffsetY, double oldOffsetX, double oldOffsetY)
Parameters:newOffsetXdouble

The new offset X.

newOffsetYdouble

The new offset Y.

oldOffsetXdouble

The old offset X.

oldOffsetYdouble

The old offset Y.

Initializes a new instance of the PanChangingEventArgs class.

C#
public PanChangingEventArgs(double newOffsetX, double newOffsetY)
Parameters:newOffsetXdouble

The new offset X.

newOffsetYdouble

The new offset Y.

Properties

Gets or sets the new offset X.

C#
public double NewOffsetX { get; set; }
Property Value:

The new offset X.

Gets or sets the new offset Y.

C#
public double NewOffsetY { get; set; }
Property Value:

The new offset Y.

Gets or sets the old offset X.

C#
public double OldOffsetX { get; set; }
Property Value:

The old offset X.

Gets or sets the old offset Y.

C#
public double OldOffsetY { get; set; }
Property Value:

The old offset Y.