This property defines the position of the text label on the control.
object.Alignment
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRadioButton interface |
Display some information about the specified radio button, including the position of the text label on the control.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("rbCaseOne")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"TypeName: " & aControl.TypeName & vbNewLine &_
"Align: " & aControl.Align & vbNewLine &_
"Alignment: " & aControl.Alignment
Profile.MsgBox(aControlInfo)
In Profile Client v8 on User Interface Alignment can be found in
.