 | EventedListTItem Property |
Gets or sets the element at the specified index.
Namespace:
System.Collections.Generic
Assembly:
AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntaxpublic T this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As T
Get
Set
public:
virtual property T default[int index] {
T get (int index) sealed;
void set (int index, T value) sealed;
}
Request Example
View SourceParameters
- index
- Type: SystemInt32
The zero-based index of the element to get or set.
Property Value
Type:
TThe element at the specified index.
Exceptions
See Also