TryGetValue Method
Tries to retrieve a PropertyDefinition from the dictionary by it's PropertyDefinition.SystemName
Syntax
public System.bool TryGetValue(
System.string systemName,
out PropertyDefinition value
)Public Function TryGetValue( _
ByVal systemName As System.String, _
ByRef value As PropertyDefinition _
) As System.BooleanParameters
| Name | Description |
|---|---|
| systemName | The system name of the PropertyDefinition to retrieve. |
| value | The returned PropertyDefinition object if a match was found |
Return Value
True if the PropertyDefinition was found. False otherwise.