Share via


Visible property (Application)

Returns or sets the visibility of the application. True if the application is visible. This property cannot be set when MapPoint is embedded. Not available for the MapPoint Control. Read/write Boolean.

Applies to

Objects:  Application

Syntax

object.Visible

Parameters

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

Example

    Sub ShowApplication()
  Dim objApp as New MapPoint.Application

  'Make the application visible   objApp.Visible = True
  'Give the user control of the application   objApp.UserControl = True
  End Sub