用于Outlook约会的上下文Outlook加载项

问题描述 投票:0回答:1

根据锥形文本加载项的文档,即“上下文加载项是根据消息或约会中的文本激活的Outlook加载项,可以将其与Outlook约会或事件一起使用。

如果是,我应该在下面的代码中使用什么使其适用于APPOINTMENT

Rule xsi:type =“ ItemIs” ItemType =“ Message”规则xsi:type =“ ItemHasKnownEntity” EntityType =“ PhoneNumber” Highlight =“ all”

outlook calendar outlook-addin office-js
1个回答
0
投票
您只需要为Appointment属性指定ItemType值。

<Rule xsi:type="RuleCollection" Mode="Or"> <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" /> <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Read" /> </Rule>

在MSDN的ItemIs rule部分中了解有关此内容的更多信息。>>
© www.soinside.com 2019 - 2024. All rights reserved.