Symbols property
Returns the Symbols collection from the map. Read-only.
Applies to
Objects: Map
Syntax
object.Symbols
Part | Description |
---|---|
object | Required. An expression that returns a Map object. |
Example
Sub GetNumberOfSymbols()
Dim objApp As New MapPoint.Application
Dim objMap As MapPoint.Map
Set objMap = objApp.OpenMap(objApp.Path & "\Samples\Clients.ptm")
MsgBox objMap.Symbols.Count
End Sub