Skip to content

CurrentExtentChangingMapViewEventArgs

Namespace: ThinkGeo.Core

Provides data for the CurrentExtentChanging event.

public class CurrentExtentChangingMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentExtentChangingMapViewEventArgs

Properties

OldExtent

This property gets or sets the old extent.

public RectangleShape OldExtent { get; }

Property Value

RectangleShape

        The old extent.

NewExtent

This property gets or sets the new extent.

public RectangleShape NewExtent { get; set; }

Property Value

RectangleShape

        The new extent.

Cancel

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.