1

I know, I can access using Store.GetSearchFolders().Item("xxx"). I want to get the integer value for that folder. Is there any way to do that ?

Venkatesh
  • 1,537
  • 15
  • 28

1 Answers1

1

No object in Outlook (or MAPI) has an intrinsic integer index. You can have an entry id to use in Namespace.GetFolderFromID, or you can use the folder name and MAPIFolders.Item().

Dmitry Streblechenko
  • 62,942
  • 4
  • 53
  • 78