CurrentScaleChangingMapViewEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the CurrentScaleChanged event.
public class CurrentScaleChangingMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentScaleChangingMapViewEventArgs
Properties¶
OldScale¶
This property gets or sets the old scale.
public double OldScale { get; }
Property Value¶
The old scale.
NewScale¶
This property gets or sets the new scale.
public double NewScale { get; }
Property Value¶
The new scale.
Cancel¶
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.