如何突出显示Outlook联系人

时间:2016-01-27 12:21:12

标签: outlook ms-office outlook-addin

有没有办法以不同方式显示Outlook联系人列表中的某些联系人?

到目前为止,我已经看到,Office应用程序有一些可用的自定义功能,但是我还没有看到任何远程接近此功能的内容。

3 个答案:

答案 0 :(得分:0)

不,无法以其他颜色显示Outlook联系人。

答案 1 :(得分:0)

嗯,确实这就是我发现的 - 只有通过向Outlook.TableView添加新的AutoFormatRule才能实现。

示例代码如下:

Outlook.AutoFormatRule autoFormatRule = tableView.AutoFormatRules.Add("My own rule");
autoFormatRule.Font.Bold = true;
autoFormatRule.Font.Strikethrough = true;
autoFormatRule.Filter = <filtering>;

tableView.Save();
tableView.Apply();

为了填写'过滤',第一部分可以使用DASL Queries 但我仍然需要弄清楚如何处理非列表视图。

答案 2 :(得分:0)

我只建议一种可能的方法 - 用自定义表单替换默认文件夹视图,您可以在其中以您需要的方式显示条目。有关详细信息,请参阅Creating Adjacent Windows In Outlook

您也可以考虑使用Add-in Express。他们提供开箱即用的布局。请参阅Advanced Outlook view and form regions

注意,您可以在自定义表单之上使用任何.net控件。

相关问题