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