CollectionItem Property (Int32) |
|
DataPA OpenAnalytics API Reference
Returns a specific element of a Collection object either by position or by key. Read-only.
Namespace: DataPAEnterpriseDashboardAssembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)
Syntax public Object this[
int Index
] { get; }
Public ReadOnly Default Property Item (
Index As Integer
) As Object
Get
public:
virtual property Object^ default[int Index] {
Object^ get (int Index) sealed;
}
function get_Item(Index);
Parameters
- Index
- Type: SystemInt32
A numeric expression that specifies the position of an element of the collection. Index must be a number from 1 through the value of the collection's Count property.
Return Value
Type:
ObjectReturns a specific element of a Collection object either by position or by key. Read-only.
Implements
Collection_CollectionItemInt32See Also