 | BlackboardTryGetValue Method |
Tries to find the attribute with the passed id.
Namespace: Slash.AI.BehaviorTrees.DataAssembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntaxpublic override bool TryGetValue(
Object id,
out Object value
)
Public Overrides Function TryGetValue (
id As Object,
<OutAttribute> ByRef value As Object
) As Boolean
public:
virtual bool TryGetValue(
Object^ id,
[OutAttribute] Object^% value
) override
abstract TryGetValue :
id : Object *
value : Object byref -> bool
override TryGetValue :
id : Object *
value : Object byref -> bool
Parameters
- id
- Type: SystemObject
Id of attribute. - value
- Type: SystemObject
Contains value if id was found.
Return Value
Type:
Boolean True if the attribute was found, else false.
Implements
IAttributeTableTryGetValue(Object, Object)
See Also