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