Explorer.NavigationPane 属性 (Outlook)

返回一个 NavigationPane 对象,该对象代表 Explorer 对象的导航窗格。 此为只读属性。

语法

expressionNavigationPane

表达 一个代表 Explorer 对象的变量。

备注

某些 Explorer 对象可能没有与之关联的 NavigationPane 对象。 在这种情况下,此属性返回 Null(在 Visual Basic 中为 Nothing)。

示例

下面的 Visual Basic for Applications (VBA) 示例检索活动 资源管理器 对象的 NavigationPane 对象并显示导航模块包含并显示该对象的有关信息。

Sub DisplayModuleCounts() 
 
 Dim objPane As NavigationPane 
 
 
 
 ' Get the NavigationPane object for the 
 
 ' currently displayed Explorer object. 
 
 Set objPane = Application.ActiveExplorer.NavigationPane 
 
 
 
 ' Display information about modules contained 
 
 ' by the NavigationPane object. 
 
 MsgBox "The Navigation Pane currently contains " & _ 
 
 objPane.Modules.Count & _ 
 
 " modules, of which " & _ 
 
 objPane.DisplayedModuleCount & _ 
 
 " are displayed." 
 
 
 
End Sub

另请参阅

资源管理器对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。