| List Class |
Namespace: Selenium
Dim instance As List
The List type exposes the following members.
| Name | Description | |
|---|---|---|
| List |
Creates a new list object
| |
| List(Array) |
Creates a new list object
| |
| List(Int32) |
Creates a new list object
|
| Name | Description | |
|---|---|---|
| Add |
Adds a value in the list
| |
| AddRange |
Adds multiple values at once in the list
| |
| Clear |
Clears the list
| |
| Contains |
Return true if the list contains the value.
| |
| ConvertT |
Converts each value.
| |
| CopyTo |
Copies the values to an array
| |
| Distinct |
Remove duplicates
| |
| First |
Returns the first item
| |
| GetEnumerator |
Returns the List enumerator
| |
| IndexOf |
Returns the index of the value
| |
| Insert |
Insert a value at index
| |
| Last |
Returns the last item
| |
| LastIndexOf |
The index of the value starting from the end.
| |
| Remove |
Remove the value
| |
| RemoveAt |
Remove the value at index
| |
| Sort |
Sorts the elements
| |
| ToArray |
Returns an array with the values
| |
| ToExcel |
Copies the values to Excel. The target can be an address, a worksheet or a range.
| |
| Values |
Returns an array with the values
|
| Name | Description | |
|---|---|---|
| Count |
Returns the number of itens
| |
| IsFixedSize |
Not available
| |
| IsReadOnly |
Not available
| |
| IsSynchronized |
Retuns false
| |
| Item |
Return the item at index
| |
| SyncRoot |
Retuns null
|