| 
TypedSortedListEx
 TKey
,
 TValue
GetByIndex Method
  | 
 Gets the value at the specified index of the SortedListEx.
 Namespace:
 Spire.Doc.Collections
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
public virtual TValue GetByIndex(
	int index
)
 
Public Overridable Function GetByIndex ( 
	index As Integer
) As TValue
 
public:
virtual TValue GetByIndex(
	int index
)
 
abstract GetByIndex : 
index : int -> 'TValue 
override GetByIndex : 
index : int -> 'TValue 
 
 
 
Parameters
 
- 
index
 
- 
 Type:
 
System
Int32
 
 The zero-based index of the value to get.
Return Value
 
 Type:
 
 TValue
 The value at the specified index of the SortedListEx.
 
 Exceptions
Exceptions
 
 
| Exception | Condition | 
| ArgumentOutOfRangeException | When index is less than zero or greater than size of the list. | 
 
 
 See Also
See Also