CurrentExtentChangingMapViewEventArgs¶
Namespace: ThinkGeo.Core
Use to send data when map's extent is changing.
public class CurrentExtentChangingMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentExtentChangingMapViewEventArgs
Properties¶
OldExtent¶
Gets or sets the old extent.
public RectangleShape OldExtent { get; set; }
Property Value¶
RectangleShape
The old extent.
NewExtent¶
Gets or sets the new extent.
public RectangleShape NewExtent { get; set; }
Property Value¶
RectangleShape
The new extent.
Constructors¶
CurrentExtentChangingMapViewEventArgs()¶
Initializes a new instance of the CurrentExtentChangingMapViewEventArgs class.
public CurrentExtentChangingMapViewEventArgs()
CurrentExtentChangingMapViewEventArgs(RectangleShape, RectangleShape)¶
Initializes a new instance of the CurrentExtentChangingMapViewEventArgs class.
public CurrentExtentChangingMapViewEventArgs(RectangleShape oldExtent, RectangleShape newExtent)
Parameters¶
oldExtent
RectangleShape
The old extent.
newExtent
RectangleShape
The new extent.