我正在嘗試獲取Mail,Calendar e.t.c的數據類型(正文格式)。身體。如何使用.NET獲取Lotus Notes項目的Body的「Data Type」值?
獲取主體內容爲:
String Body = (string)((object[])docInbox.GetItemValue("Body"))[0];
或
String Body = docInbox.GetFirstItem("Body").Text;
我試過用:
String bodyFormat = ((object[])docInbox.GetItemValue("Body"))[0].GetType().ToString();
但在這種情況下,我得到 「System.String」 的值。但實際上它是:「富文本」。
thanx edSchembor。 – Preeti 2009-09-15 15:54:02