Outlook) (Folder.CurrentView 屬性
會傳回代表目前檢 視的 View 物件。 唯讀。
語法
expression。 CurrentView
表達 代表 Folder 物件的 變數。
註解
如果要取得目前 Explorer 之檢視的 View 物件,請使用 Explorer.CurrentView,取代由 Explorer.CurrentFolder 傳回之目前 Folder 物件的 CurrentView 屬性。
您必須先儲存 CurrentView 傳回之 View 物件的參照,才能夠就任何用途使用該物件。
若要正確重設目前的檢視,您必須執行 View.Reset ,然後執行 View.Apply。 下列程式碼範例會示範呼叫的順序:
Sub ResetView()
Dim v as Outlook.View
' Save a reference to the current view object
Set v = Application.ActiveExplorer.CurrentView
' Reset and then apply the current view
v.Reset
v.Apply
End Sub
範例
下列 VBA 範例會顯示 [收件匣] 資料夾的目前檢視。
Sub TestFolderCurrentView()
Dim nsp As Outlook.NameSpace
Dim mpFolder As Outlook.Folder
Dim vw As Outlook.View
Dim strView As String
Set nsp = Application.Session
Set mpFolder = nsp.GetDefaultFolder(olFolderInbox)
' Save a reference to the current view
Set vw = mpFolder.CurrentView
MsgBox "The Current View is: " & vw.Name
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。