ISEdit.BorderStyle

Description

This property determines whether the specified edit control has a single line border around the client area.

Syntax

object.BorderStyle

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

Return Value

TSBorderStyle

Example

Display some information about the specified edit control, including its border style.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")

aEditInfo =_  
  "ShortName: " & aEdit.ShortName & vbNewLine &_
  "TypeName: " & aEdit.TypeName & vbNewLine &_
  "Border Style: " & aEdit.BorderStyle               
  
Profile.MsgBox(aEditInfo)  
Note: This macro should be executed in any event handler of the form control.

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

Version information

Added in v7.8.0