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.