Get Type of Outlook item

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

is there a way to get type of an item in Folder using c#? (e.g. Mail, Post,
document ...)

Thanks for every Tips.

PIT
 
There are a number of properties you can use, but I don't have any C#
examples. Item.Class will return an enum member that tells what the item is,
so will examining the MessageClass of the item ("IPM.Note" for email,
"IPM.Post" for posts, etc.).
 
Thanks Ken,

i have found a solution in "An Introduction to Programming Outlook 2003
Using C#".

PIT
 
Back
Top