How to get "Data Type" value of Body of a Lotus Notes Item using .NET?
- by Pari
I am trying to get Data Type (Body Format) of Mail,Calendar e.t.c. Body.
Getting Body content as:
String Body = (string)((object[])docInbox.GetItemValue("Body"))[0];
or
String Body = docInbox.GetFirstItem("Body").Text;
I tried it using:
String bodyFormat = ((object[])docInbox.GetItemValue("Body"))[0].GetType().ToString();
But in this case i am getting "System.String" value.But actually it is : "Rich Text".