Skip to content

< Back


CurrentExtentChangedMapViewEventArgs

Namespace: ThinkGeo.UI.XamarinForms

Use to send data when map's extent is changed.

public class CurrentExtentChangedMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentExtentChangedMapViewEventArgs

Properties

PreviousExtent

Gets or sets the previous extent.

public RectangleShape PreviousExtent { get; set; }

Property Value

RectangleShape
The previous extent.

CurrentExtent

Gets or sets the current extent.

public RectangleShape CurrentExtent { get; set; }

Property Value

RectangleShape
The current 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 previousExtent, RectangleShape currentExtent)

Parameters

previousExtent RectangleShape
The previous extent.

currentExtent RectangleShape
The current extent.


< Back