Share via


TabStop property

Returns or sets whether the user can tab to the MapPoint Control and give it focus. Read/write Boolean.

Applies to

Objects: MappointControl

Syntax

object.TabStop

Properties

Part

Description

Object

Required. An expression that returns a MappointControl object.

Example

  Sub Form_Load()
    Dim strPath as String
    'Assume the default installation path
    strPath = "C:\Program Files\Microsoft MapPoint\Samples\"
    MappointControl1.OpenMap strPath & "Clients.ptm"
    'Do not let the user tab to the map
    MappointControl1.TabStop = False
  End Sub
 

Note   This sample code contains data that is specific for use in MapPoint North America; it is for illustration purposes only.