Word) (View.SeekView 屬性
會傳回或設定顯示在整頁模式中的文件元素。 屬性可以設定為任何 WdSeekView 常數。 讀取/寫入 WdSeekView 。
語法
expression. SeekView
需要 expression。 代表 'View' 物件的變數。
註解
如果不是以整頁模式檢視,則此屬性會產生錯誤。
範例
如果使用中的文件含有註腳,則這個範例會以整頁模式顯示註腳。
If ActiveDocument.Footnotes.Count >= 1 Then
With ActiveDocument.ActiveWindow.View
.Type = wdPrintView
.SeekView = wdSeekFootnotes
End With
End If
這個範例會顯示目前章節第一頁的頁尾。
ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True
With ActiveDocument.ActiveWindow.View
.Type = wdPrintView
.SeekView = wdSeekFirstPageFooter
End With
如果選取範圍位於整頁模式的註腳或章節附註區域中,則這個範例會切換為主文件。
Set myView = ActiveDocument.ActiveWindow.View
If myView.SeekView = wdSeekFootnotes Or _
myView.SeekView = wdSeekEndnotes Then
myView.SeekView = wdSeekMainDocument
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。