Application property

Returns the MapPoint Application object. Not available for use with the MappointControl object. Read-only.

Applies to

Collections: AddIns, Adjustments, DataRanges, DataSets, Directions, Fields, FindResults, PlaceCategories, SavedWebPages, Shapes, Symbols, Toolbars, Waypoints

Objects: Application, DataMap, DataRange, DataSet, Direction, DriverProfile, Field, FillFormat, Hyperlink, LineFormat, Location, Map, PageSetup, PlaceCategory, Pushpin, Recordset, Route, SavedWebPage, SelectedArea, Shape, StreetAddress, Symbol, Toolbar, Waypoint

Syntax

object.Application

Parameters

Part

Description

object

Required. An expression that returns a collection or object in the Applies to list.

Example

  Sub GetApplication()

  Dim objMap As MapPoint.Map
  Dim objApp As MapPoint.Application

  'Create and set the Map object
  Set objMap = New MapPoint.Map

  Set objApp = objMap.Application

  'Use the object
  MsgBox objApp.Name

  End Sub