CurrentExtentChangedMapViewEventArgs¶
Namespace: ThinkGeo.Core
Use to send data when map's extent is changed.
public class CurrentExtentChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentExtentChangedMapViewEventArgs
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¶
CurrentExtentChangedMapViewEventArgs()¶
Initializes a new instance of the CurrentExtentChangedMapViewEventArgs class.
public CurrentExtentChangedMapViewEventArgs()
CurrentExtentChangedMapViewEventArgs(RectangleShape, RectangleShape)¶
Initializes a new instance of the CurrentExtentChangedMapViewEventArgs class.
public CurrentExtentChangedMapViewEventArgs(RectangleShape oldExtent, RectangleShape newExtent)
Parameters¶
oldExtent
RectangleShape
The old extent.
newExtent
RectangleShape
The new extent.