| Dictionary Class |
Namespace: Selenium
Dim instance As Dictionary
The Dictionary type exposes the following members.
| Name | Description | |
|---|---|---|
| Dictionary |
Creates a new Dictionary object
| |
| Dictionary(IDictionaryString, Object) |
Creates a new Dictionary object
|
| Name | Description | |
|---|---|---|
| Add |
Adds a new value to the dictionary
| |
| Clear |
Clears the dictionary
| |
| ContainsKey |
Returns true if the key is present, false otherwise.
| |
| Get |
Returns the value associated with the specified key or the default value if the key doesn't exist.
| |
| GetEnumerator |
Return the dictionary enumerator
| |
| Remove |
Removes the value for the given key.
| |
| Set |
Sets the value for the given key. The key is created if missing.
| |
| ToExcel |
Writes the values in an Excel sheet.
|
| Name | Description | |
|---|---|---|
| (DictionaryString, Object to Dictionary) |
Explicite casting from a Dictionary<string, object> type
| |
| (Dictionary to DictionaryString, Object) |
Explicite casting to a Dictionary<string, object> type
|
| Name | Description | |
|---|---|---|
| Count |
Returns the number of items
| |
| Item |
Returns the value for the key
| |
| Items |
Items
| |
| Keys |
Returms an array containing the keys
| |
| Values |
Returms an array containing the values
|