Word) (Panes 物件
代表單一視窗的視窗窗格的 Pane 物件的集合。
註解
使用 Panes 屬性可傳回 Panes 集合。 下列範例會分割使用中視窗,並隱藏尺規的每個窗格。
ActiveDocument.ActiveWindow.Split = True
For Each aPane In ActiveDocument.ActiveWindow.Panes
aPane.DisplayRulers = False
Next aPane
若要新增的視窗窗格使用 Add 方法或 分割 屬性。 下面範例會分割使用中視窗在 20%的目前視窗的大小。
ActiveDocument.ActiveWindow.Panes.Add SplitVertical:=20
下列範例會將使用中視窗分割成兩半。
ActiveDocument.ActiveWindow.Split = True
使用 SplitSpecial 屬性可在個別窗格中顯示批註、註腳或章節附註。
當視窗已分割,或是使用中檢視模式不是整頁模式,而且顯示了類似註腳或註解等資訊時,該視窗會有一個以上的窗格。 下列範例會在標準模式中顯示註腳窗格,然後會提示使用者關閉此窗格。
ActiveDocument.ActiveWindow.View.Type = wdNormalView
If ActiveDocument.Footnotes.Count >= 1 Then
ActiveDocument.ActiveWindow.View.SplitSpecial = wdPaneFootnotes
response = _
MsgBox("Do you want to close the footnotes pane?", vbYesNo)
If response = vbYes Then _
ActiveDocument.ActiveWindow.ActivePane.Close
End If
請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。