This property determines whether the specified edit control has a single line border around the client area.
object.BorderStyle
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
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)
In Profile Client v8 on User Interface Border Style can be found in
.