Skip to content

CurrentScaleChangedMapViewEventArgs

Namespace: ThinkGeo.UI.Wpf

Provides data for the CurrentScaleChanged event.

public class CurrentScaleChangedMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentScaleChangedMapViewEventArgs

Properties

OldScale

Gets or sets the scale value prior to the change.

public double OldScale { get; set; }

Property Value

Double

NewScale

Gets or sets the scale value applied after the change.

public double NewScale { get; set; }

Property Value

Double

Constructors

CurrentScaleChangedMapViewEventArgs(Double, Double)

Initializes a new instance of the CurrentScaleChangedMapViewEventArgs class.

public CurrentScaleChangedMapViewEventArgs(double oldScale, double newScale)

Parameters

oldScale Double
The scale prior to the change.

newScale Double
The scale after the change completes.