CurrentScaleChangedMapViewEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data for the CurrentScaleChanged event.
public class CurrentScaleChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentScaleChangedMapViewEventArgs
Properties¶
OldScale¶
Gets or sets the scale value prior to the change.
public double OldScale { get; set; }
Property Value¶
NewScale¶
Gets or sets the scale value applied after the change.
public double NewScale { get; set; }
Property Value¶
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.