This property is True if the width of the specified control should be calculated automatically.
object.AutoSize
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISControl interface |
bool
Display AutoSize for the specified control.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("chkMV")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"TypeName: " & aControl.TypeName & vbNewLine &_
"Width: " & aControl.Width & vbNewLine &_
"Auto Size: " & aControl.AutoSize
Profile.MsgBox(aControlInfo)
In Profile Client v8 on User Interface Auto Size can be found in
.