共用方式為


Outlook) (Folder.StoreID 屬性

會傳回 String,表示資料夾的儲存區 ID。 唯讀。

語法

expressionStoreID

表達 代表 Folder 物件的 變數。

範例

這個 Visual Basic for Applications (VBA) 範例會取得預設 Tasks 資料夾的 EntryIDStoreID ,然後使用這些值呼叫 NameSpace.GetFolderFromID 方法來取得相同的資料夾。 然後顯示該資料夾。

Sub GetWithID() 
 
 Dim myFolder As Outlook.Folder 
 
 Dim myEntryID As String 
 
 Dim myStoreID As String 
 
 Dim myNewFolder As Outlook.Folder 
 
 
 
 Set myFolder = Application.Session.GetDefaultFolder(olFolderTasks) 
 
 myEntryID = myFolder.EntryID 
 
 myStoreID = myFolder.StoreID 
 
 Set myNewFolder = Application.Session.GetFolderFromID(myEntryID, myStoreID) 
 
 myNewFolder.Display 
 
End Sub

另請參閱

Folder 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應