Skip to content

CurrentExtentChangingMapViewEventArgs

Namespace: ThinkGeo.UI.Wpf

Provides data for the CurrentExtentChanging event.

public class CurrentExtentChangingMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentExtentChangingMapViewEventArgs

Properties

OldExtent

Gets the map extent before the change began.

public RectangleShape OldExtent { get; }

Property Value

RectangleShape

NewExtent

Gets or sets the target extent being navigated to.

public RectangleShape NewExtent { get; set; }

Property Value

RectangleShape

Cancel

Gets or sets a value indicating whether the extent change should be cancelled.

public bool Cancel { get; set; }

Property Value

Boolean

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.