Word) (Font.Hidden 屬性
True 是表示 如果字型格式化為隱藏文字。 讀取/寫入的 Long。
運算式。隱藏
需要 expression。 代表 Font 物件的變數。
此屬性會傳回 True、False 或 wdUndefined (True 及 False 的混合)。 可以設為 True 、 False 或 wdToggle 。
若要控制隱藏文字的顯示,請使用 View 物件的 ShowHiddenText 屬性。
若要控制是否屬性及方法會傳回 Range 物件包含或排除隱藏的文字時隱藏的文字不顯示、 使用 TextRetrievalMode 物件的 IncludeHiddenText 屬性。
本範例會檢查選取範圍中是否有隱藏文字。
If Selection.Type = wdSelectionNormal Then
If Selection.Font.Hidden = wdUndefined or _
Selection.Font.Hidden = True Then
MsgBox "There is hidden text in the selection."
Else
MsgBox "No hidden text in the selection."
End If
Else
MsgBox "You need to select some text."
End If
本範例會讓使用中視窗中的所有隱藏文字成為可見,然後將選取範圍設為隱藏文字的格式。
ActiveDocument.ActiveWindow.View.ShowHiddenText = True
If Selection.Type = wdSelectionNormal Then _
Selection.Font.Hidden = True
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。