Share via


Appearance property

Returns or sets the way that the MapPoint Control border is drawn. The BorderStyle property of the MappointControl object must be 1. Otherwise, this setting has no effect. Read/write Integer.

Appearance

Integer

Description

3D

1

Sunken border, two pixels wide

Flat

0

Black border, single pixel wide

Applies to

Objects: MappointControl

Syntax

object.Appearance

Parameters

Part

Description

object

Required. An expression that returns a MappointControl object.

Example

  Sub Form_Load()
    Dim strPath as String
    'Assume the default installation Path
    for 32 bit systems: strPath = "C:\Program Files\Microsoft MapPoint 2013\Samples\"
    for 64 bit systems: strPath = "C:\Program Files (x86)\Microsoft MapPoint 2013\Samples\"
    MappointControl1.OpenMap strPath & "Clients.ptm"
    MappointControl1.BorderStyle = vbFixedSingle
  End Sub

  Sub Command1_Click()
    'Toggle the appearance of the control
    If MappointControl1.Appearance = 1 Then
      MappointControl1.Appearance = 0
    Else
      MappointControl1.Appearance = 1
    End If
  End Sub

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