閱讀英文

共用方式為


Word) (Font.Hidden 屬性

True 是表示 如果字型格式化為隱藏文字。 讀取/寫入的 Long

語法

運算式隱藏

需要 expression。 代表 Font 物件的變數。

註解

此屬性會傳回 TrueFalsewdUndefined (TrueFalse 的混合)。 可以設為 TrueFalsewdToggle

若要控制隱藏文字的顯示,請使用 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

另請參閱

Font 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應