CurrentScaleChangingMapViewEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data for the CurrentScaleChanged event.
public class CurrentScaleChangingMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentScaleChangingMapViewEventArgs
Properties¶
OldScale¶
Gets the scale value prior to the change.
public double OldScale { get; }
Property Value¶
NewScale¶
Gets the scale value being applied.
public double NewScale { get; }
Property Value¶
Cancel¶
Gets or sets a value indicating whether the scale change should be cancelled.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
CurrentScaleChangingMapViewEventArgs(Double, Double)¶
Initializes a new instance of the CurrentScaleChangingMapViewEventArgs class.
public CurrentScaleChangingMapViewEventArgs(double oldScale, double newScale)
Parameters¶
oldScale Double
The old scale.
newScale Double
The new scale.