CellCollection.Item Property (Int32, Int32)
Gets the Cell using two-dimensional indexing scheme.
Namespace: Microsoft.AnalysisServices.AdomdClient
Assembly: Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
index1 As Integer, _
index2 As Integer _
) As Cell
Get
'Usage
Dim instance As CellCollection
Dim index1 As Integer
Dim index2 As Integer
Dim value As Cell
value = instance(index1, index2)
public Cell this[
int index1,
int index2
] { get; }
public:
property Cell^ default[int index1, int index2] {
Cell^ get (int index1, int index2);
}
member Item : Cell
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- index1
Type: System.Int32
The first index.
- index2
Type: System.Int32
The second index.
Property Value
Type: Microsoft.AnalysisServices.AdomdClient.Cell
The Cell at the specified indexes.