Class
ZoomChangingEventArgs

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

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public class ZoomChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsZoomChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

ZoomChangingEventArgs(double, double)

Initializes a new instance of the ZoomChangingEventArgs class.

Declaration

cs-api-definition
public ZoomChangingEventArgs(double newHorizontalScaleFactor, double newVerticalScaleFactor)

Parameters

newHorizontalScaleFactor

double

newVerticalScaleFactor

double

ZoomChangingEventArgs(double, double, double, double)

Initializes a new instance of the ZoomChangingEventArgs class.

Declaration

cs-api-definition
public ZoomChangingEventArgs(double newHorizontalScaleFactor, double newVerticalScaleFactor, double oldHorizontalScaleFactor, double oldVerticalScaleFactor)

Parameters

newHorizontalScaleFactor

double

newVerticalScaleFactor

double

oldHorizontalScaleFactor

double

oldVerticalScaleFactor

double

Properties

NewHorizontalScaleFactor

Gets or sets the new horizontal scale factor.

Declaration

cs-api-definition
public double NewHorizontalScaleFactor { get; set; }

Property Value

double

NewVerticalScaleFactor

Gets or sets the new vertical scale factor.

Declaration

cs-api-definition
public double NewVerticalScaleFactor { get; set; }

Property Value

double

OldHorizontalScaleFactor

Gets or sets the old horizontal scale factor.

Declaration

cs-api-definition
public double OldHorizontalScaleFactor { get; set; }

Property Value

double

OldVerticalScaleFactor

Gets or sets the old vertical scale factor.

Declaration

cs-api-definition
public double OldVerticalScaleFactor { get; set; }

Property Value

double