Class

MobileCircularRegion


Description

The definition of an area used for geo-fencing.

Properties

Name

Type

Read-Only

Shared

Identifier

String

Latitude

Double

Longitude

Double

NotifyOnEntry

Boolean

NotifyOnExit

Boolean

Radius

Double

Methods

Name

Parameters

Returns

Shared

Constructor

latitude As Double, longitude As Double, radius As Double, identifier As String

center As Point, radius As Double, identifier As String

Property descriptions


MobileCircularRegion.Identifier

Identifier As String

A piece of data you can use to identify the purpose of this region.

This property is read-only.


MobileCircularRegion.Latitude

Latitude As Double

The latitude of the region.

This property is read-only.


MobileCircularRegion.Longitude

Longitude As Double

The longitude of the region.

This property is read-only.


MobileCircularRegion.NotifyOnEntry

NotifyOnEntry As Boolean

If True, the RegionEntered event will fire when the user enters this region.


MobileCircularRegion.NotifyOnExit

NotifyOnExit As Boolean

If True, the RegionExited event will fire when the user exits this region.


MobileCircularRegion.Radius

Radius As Double

The radius of the region in meters.

This property is read-only.

Method descriptions


MobileCircularRegion.Constructor

Constructor(latitude As Double, longitude As Double, radius As Double, identifier As String)

Creates a MobileCircularRegion based upon GPS coordinates passed.

Note

Constructors are special methods called when you create an Object With the New keyword And pass In the parameters above.


Constructor(center As Point, radius As Double, identifier As String)

Creates a MobileCircularRegion based upon a central point and radius.

Note

Constructors are special methods called when you create an Object With the New keyword And pass In the parameters above.

Compatibility

iOS projects on iOS.

See also

Object parent class