Word () 的 Font.Bold 屬性
True 是表示 如果字型粗體格式。 讀取/寫入的 Long。
運算式。大膽
表達 代表 Font 物件的變數。
會傳回 True、False 或 wdUndefined (True 及 False 的混合)。 可以設為 True 、 False 或 wdToggle 。
在本範例中,如果選擇範圍有一部分是粗體字,程式碼就會使整個選取範圍變為粗體。
If Selection.Type = wdSelectionNormal Then
If Selection.Font.Bold = wdUndefined Then _
Selection.Font.Bold = True
Else
MsgBox "You need to select some text."
End If
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。