The short name of the specified edit control.
object.ShortName
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
string
Display some information about the specified edit control, including its short name.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
"Width: " & aEdit.Width & vbNewLine &_
"Height: " & aEdit.Height & vbNewLine &_
"Hint: " & aEdit.Hint & vbNewLine &_
"Left: " & aEdit.Left & vbNewLine &_
"Top: " & aEdit.Top & vbNewLine &_
"Tag: " & aEdit.Tag & vbNewLine &_
"ShortName: " & aEdit.ShortName & vbNewLine &_
"TypeName: " & aEdit.TypeName
Profile.MsgBox(aEditInfo)
In Profile Client v8 on User Interface Short Name can be found in
.