CollectionBase
T
Item Property
|
Gets or sets the item at the specified index in the collection.trigger OnSet and OnSetComplete method when set item
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public T this[
int i
] { get; set; }
Public Default Property Item (
i As Integer
) As T
Get
Set
public:
virtual property T default[int i] {
T get (int i) sealed;
void set (int i, T value) sealed;
}
abstract Item : 'T with get, set
override Item : 'T with get, set
Parameters
-
i
-
Type:
System
Int32
The zero-based index of the item to get or set.
Return Value
Type:
T
The item at the specified index.
Implements
IList
T
Item
Int32
See Also