Alignment 屬性範例
下列範例示範搭配數個OptionButton控制項使用的Alignment屬性。 在此範例中,使用者可以按一下 ToggleButton來變更對齊方式。
若要使用本範例,請將此範例程式碼複製到表單的宣告部分中。 請確定該表單包含:
- 兩個分別名為 OptionButton1 和 OptionButton2 的 OptionButton 控制項。
- 一個名為 ToggleButton1 的 ToggleButton 。
Private Sub UserForm_Initialize()
OptionButton1.Alignment = fmAlignmentLeft
OptionButton2.Alignment = fmAlignmentLeft
OptionButton1.Caption = "Alignment with AutoSize"
OptionButton2.Caption = "Choice 2"
OptionButton1.AutoSize = True
OptionButton2.AutoSize = True
ToggleButton1.Caption = "Left Align"
ToggleButton1.WordWrap = True
ToggleButton1.Value = True
End Sub
Private Sub ToggleButton1_Click()
If ToggleButton1.Value = True Then
ToggleButton1.Caption = "Left Align"
OptionButton1.Alignment = fmAlignmentLeft
OptionButton2.Alignment = fmAlignmentLeft
Else
ToggleButton1.Caption = "Right Align"
OptionButton1.Alignment = fmAlignmentRight
OptionButton2.Alignment = fmAlignmentRight
End If
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。