gpt4 book ai didi

c# - 展望 2007 插件 : How to remove particular userproperty of mailItem

转载 作者:行者123 更新时间:2023-11-30 19:46:40 26 4
gpt4 key购买 nike

我正在 Outlook 2007 中开发实用程序

我可以为特定的邮件项目添加用户属性

<i>
myMailItem.UserProperties.Add("ParentMailRecipients", Outlook.OlUserPropertyType.olText,true, Outlook.OlUserPropertyType.olText);
myMailItem.UserProperties["ParentMailRecipients"].Value = SavedMailItem.To + ";" + SavedMailItem.CC;
myMailItem.Save();
</i>

一段时间后,我需要删除特定的用户属性。

User Property 有删除用户属性的方法(Remove(int))

我不知道如何找到特定用户属性的索引并将其删除。请帮我找到解决方案?

最佳答案

您可以使用属性名称从 UserProperties 集合中搜索检索 UserProperty,一旦您拥有 UserProperty 对象,就调用该对象的 Delete 方法。

UserProperty up = myMailItem.UserProperties["ParentMailRecipients"];
if(up != null)
up.Delete();

关于c# - 展望 2007 插件 : How to remove particular userproperty of mailItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8240284/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com