The maximum number of characters that can be entered into the edit control.
object.MaxLength
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
int
Display some information about the specified edit control, including the maximum number of characters that can be entered into the edit control.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEdit =_
"Short Name: " & aEdit.ShortName & vbNewLine &_
"TypeName: " & aEdit.TypeName & vbNewLine &_
"Max Length: " & aEdit.MaxLength
Profile.MsgBox(aEdit)
In Profile Client v8 on User Interface Max Length can be found in
.