2

我想从我的 Outlook 加载项中选择一个 mailItem。我知道如何从 c# 显示邮件项,但我需要在 Outlook 窗口本身中选择它。

显示一个邮件项:

mailItem.Display();

我正在使用 Outlook 2010 加载项。

有人知道如何做到这一点吗?

4

1 回答 1

4

使用Explorer.ClearSelection()然后Explorer.AddToSelection()。您应该Explorer.IsItemSelectableInView()在调用之前使用AddToSelection()以确保您要选择的项目存在于当前的资源管理器视图中。

Application.ActiveExplorer()如果存在,将为您提供当前活动的资源管理器。

这是从此处获取的示例片段稍作修改以检查IsItemSelectableInView)。

Outlook._Explorer explorer = OutlookApp.ActiveExplorer();  // get active explorer
explorer.ClearSelection(); // remove current selection
Outlook.NameSpace ns = OutlookApp.Session; 
object item = ns.GetItemFromID(entryId, Type.Missing); // retrieve item
if (explorer.IsItemSelectableInView(item)) // ensure item is in current view
  explorer.AddToSelection(item); // change explorer selection
else
  // TODO: change current view so that item is selectable
Marshal.ReleaseComObject(item); 
Marshal.ReleaseComObject(ns); 
Marshal.ReleaseComObject(explorer); 

要更改当前Explorer视图,您可以使用Explorer.CurrentFolderExplorer.CurrentView

于 2012-04-18T17:20:11.480 回答