ISShape.BorderMode

Description

The mode of the border for the specified shape.

Syntax

object.BorderMode

Part Attribute Type Description
object Required
The object always implements the ISShape interface

Return Value

TSPenMode

Example

Display some information about the specified shape, including its border mode.

Dim aShape
Dim aShapeInfo

Set aShape = Form.Controls_("Shape1")
aShapeInfo =_
  "Type Name: " & aShape.TypeName & vbNewLine &_ 
  "ShortName: " & aShape.ShortName & vbNewLine &_
  "Border Mode: " & aShape.BorderMode
  
Profile.MsgBox(aShapeInfo) 
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Border Mode can be found in Maintain > Templates > Health Record Collection Templates > Open the selected form template > Open form editor > Object Inspector > Select the shape in the controls tree > BorderMode.

Version information

Added in v7.8.0