GetObject Method

Gets the object in a dictionary, given the name (keyword) of the object.

See Also | Example

Signature

RetVal = object.GetObject(Name)

Object

Dictionary
The object or objects this method applies to.

Name

String; input-only
The name (keyword) of the object in the dictionary.

RetVal

Object
The object corresponding to the given name (keyword).

Remarks

For example, querying the name "SecondKeyword" in the following dictionary would return the object "Object2":

MyDictionary

Keyword Object

FirstKeyword Object1

SecondKeyword Object2

 

   Comments?