Dictionary.Value Method

The Value method returns the value of a given Dictionary key.

Syntax

Dictionary.Value(Key)

Parameters

Key
The name of the key.

Example

The following example returns the value associated with the key “last_name” in the my_dictionary Dictionary object, and assigns the value to the variable result:

result = my_dictionary.value("last_name")

© 1997-1998 Microsoft Corporation. All rights reserved.