UserProperties.Find(String, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
查找并返回 UserProperty 请求的属性名称的对象(如果存在)。
public Microsoft.Office.Interop.Outlook.UserProperty Find (string Name, object Custom);
Public Function Find (Name As String, Optional Custom As Object) As UserProperty
参数
- Name
- String
所请求属性的名称。
- Custom
- Object
如此 如果应搜索项的自定义属性, 假 如果应搜索内置属性。
返回
如果您使用 UserProperties.Find 查找自定义属性并调用成功,它将返回一个 UserProperty 对象。 如果失败,它将在 C#) 的 Visual Basic) 中返回 Nothing (null 引用 (Nothing。 如果使用 UserProperties.Find 查找内置属性,请为 Custom
参数指定 False。 如果调用成功,它将作为一个 UserProperty 对象返回的属性。 如果调用失败,它将返回 Nothing (null 引用 (C#) 中的 Visual Basic) Nothing。 如果为 Custom
指定 True,则调用将找不到内置属性,并且将返回 Nothing (null 引用 (Visual Basic) C#) 中的 Nothing。
注解
如果 Custom
参数为 True,则仅搜索自定义用户属性。 默认值为 True。 若要查找非自定义属性(如 Subject),请将参数指定 Custom
为 False,否则将返回 Nothing。