'Declaration
Public Overloads Function TryGetFieldValue( _ ByVal attributeField As UAAttributeField, _ ByRef value As Object _ ) As Boolean
'Usage
Dim instance As UAEventData Dim attributeField As UAAttributeField Dim value As Object Dim value As Boolean value = instance.TryGetFieldValue(attributeField, value)
public bool TryGetFieldValue( UAAttributeField attributeField, out object value )
public: bool TryGetFieldValue( UAAttributeField^ attributeField, [Out] Object^ value )
Parameters
- attributeField
- Attribute field to look up in the event data.
- value
- The value found, or a null reference if the attribute field has not been found.
Return Value
Returns
true
if the attribute field has been found; false
otherwise.