MailItem 接口参考 反馈 定义命名空间: Microsoft.Office.Interop.Outlook 程序集: Microsoft.Office.Interop.Outlook.dll 代表一封邮件。C# 复制 [System.Runtime.InteropServices.Guid("00063034-0000-0000-C000-000000000046")] public interface MailItem : Microsoft.Office.Interop.Outlook._MailItem, Microsoft....
MailItemClass.Importance 属性 参考 反馈 本文内容 定义 适用于 定义 命名空间: Microsoft.Office.Interop.Outlook 程序集: Microsoft.Office.Interop.Outlook.dll 这是在处理 COM coclass(托管代码需要此 Coclass 来实现与相应的 COM 对象的互操作性)时创建的 .NET 类或 .NET 类的成员。 仅当您需...
以C# ) 返回一个 字符串 (字符串,该 字符串 表示的抄送 (CC) 名称的 MailItem显示列表。 读/写。
注解 通常,存在三种不同类型的邮件:已发送、已投递和已保存。 已发送的邮件是发送至收件人或公用文件夹的项目。 已投递的邮件是在公用文件夹中创建的项目。 已保存的邮件则是已创建并保存但尚未发送或投递的项目。 适用于 产品版本 Outlook primary interop assembly Latest 反馈 此页面是否有帮助? 是 否 本文...
using Microsoft.Office.Tools; 将以下代码添加到 类外部的 ThisAddIn.cs 或 ThisAddIn.vb ThisAddIn 文件中(对于 Visual C#,将此代码添加入 OutlookMailItemTaskPane 命名空间)。 InspectorWrapper 类管理一对 Inspector 和CustomTaskPane 对象。 你将在以下步骤中完成此类的定义。 C# VB C# 复制 public clas...
using Outlook = Microsoft.Office.Interop.Outlook; VB 复制 Private Sub CreateItemFromTemplate() Dim folder As Outlook.Folder = _ CType(Application.Session.GetDefaultFolder( _ Outlook.OlDefaultFolders.olFolderDrafts), Outlook.Folder) Dim mail As Outlook.MailItem = _ CType(Application.CreateItemFr...
Office Outlook Primary Interop Assembly Search Microsoft.Office.Interop.Outlook _Account _AccountRuleCondition _Accounts _AccountSelector _AddressRuleCondition _Application _AppointmentItem _AssignToCategoryRuleAction _AttachmentSelection _AutoFormatRule _AutoFormatRules _BusinessCardView _CalendarModule _Calenda...
mySpace = appCls.GetNamespace("MAPI");Microsoft.Office.Interop.Outlook.Application outlookObj = new Microsoft.Office.Interop.Outlook.Application();MailItem Item = (Microsoft.Office.Interop.Outlook.MailItem)appCls.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);Item.To =...
usingSystem;usingSystem.Reflection;// to use Missing.Value//TO DO: If you use the Microsoft Outlook 11.0 Object Library, uncomment the following line.//using Outlook = Microsoft.Office.Interop.Outlook;namespaceConsoleApplication1{publicclassClass1{publicstaticintMain(string[]args){try{// Create th...
oMsg = oApp.CreateItem(Outlook.OlItemType.olMailItem) Error is : Unable to cast COM object of type 'Microsoft.Office.Interop.Outlook.ApplicationClass' to interface type 'Microsoft.Office.Interop.Outlook._Application'. This ...