EditorOptionAttribute.TryGetOptionValue(IEnumerable, String, Object) 方法

定义

确定该集合是否包含特定属性及返回特性值。

public:
 static bool TryGetOptionValue(System::Collections::IEnumerable ^ attributes, System::String ^ optionName, [Runtime::InteropServices::Out] System::Object ^ % optionValue);
public static bool TryGetOptionValue (System.Collections.IEnumerable attributes, string optionName, out object optionValue);
static member TryGetOptionValue : System.Collections.IEnumerable * string * obj -> bool
Public Shared Function TryGetOptionValue (attributes As IEnumerable, optionName As String, ByRef optionValue As Object) As Boolean

参数

attributes
IEnumerable

特性的集合。

optionName
String

要检查的特性的名称。

optionValue
Object

此方法返回时,将包含该特性的此值。 此参数未经初始化即被传递。

返回

如果指定的特性在集合中找到,则为 true;否则为 false

适用于