| Dictionary クラス |
名前空間: Selenium
Dim instance As Dictionary
Dictionary には次のメンバーが定義されています。
| 名前 | 説明 | |
|---|---|---|
| Dictionary |
新しい Dictionary オブジェクトを作成します。
| |
| Dictionary(IDictionaryString, Object) |
新しい Dictionary オブジェクトを作成します。
|
| 名前 | 説明 | |
|---|---|---|
| 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 |
Dictionary の列挙子を返します。
| |
| 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.
|
| 名前 | 説明 | |
|---|---|---|
| (DictionaryString, Object to Dictionary) |
Explicite casting from a Dictionary<string, object> type
| |
| (Dictionary to DictionaryString, Object) |
Explicite casting to a Dictionary<string, object> type
|
| 名前 | 説明 | |
|---|---|---|
| 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
|