Share via


AddIns property

Returns the AddIns collection currently connected to MapPoint. Read-only.

Applies to

Objects:  Application

Syntax

object.AddIns

Part Description
object Required. An expression that returns an Application object.

Example

    Sub GetInfoAboutAddIns()
    Dim objApp As New mappoint.Application

    'Set up application and objects to use     objApp.Visible = True     objApp.UserControl = True
    'Show count of AddIns     MsgBox objApp.AddIns.Count   End Sub