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

Event arguments indicating the old and new horizontal/vertical scale factors.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

C#
public class ZoomChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsZoomChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the ZoomChangingEventArgs class.

C#
public ZoomChangingEventArgs(double newHorizontalScaleFactor, double newVerticalScaleFactor, double oldHorizontalScaleFactor, double oldVerticalScaleFactor)
Parameters:newHorizontalScaleFactordoublenewVerticalScaleFactordoubleoldHorizontalScaleFactordoubleoldVerticalScaleFactordouble

Initializes a new instance of the ZoomChangingEventArgs class.

C#
public ZoomChangingEventArgs(double newHorizontalScaleFactor, double newVerticalScaleFactor)
Parameters:newHorizontalScaleFactordoublenewVerticalScaleFactordouble

Properties

Gets or sets the new horizontal scale factor.

C#
public double NewHorizontalScaleFactor { get; set; }

Gets or sets the new vertical scale factor.

C#
public double NewVerticalScaleFactor { get; set; }

Gets or sets the old horizontal scale factor.

C#
public double OldHorizontalScaleFactor { get; set; }

Gets or sets the old vertical scale factor.

C#
public double OldVerticalScaleFactor { get; set; }