Partager via


Propriété CellSet.Item (Int32, Int32)

Gets the specified Cell from the collection.

Espace de noms :  Microsoft.AnalysisServices.AdomdClient
Assembly :  Microsoft.AnalysisServices.AdomdClient (en Microsoft.AnalysisServices.AdomdClient.dll)

Syntaxe

'Déclaration
Public ReadOnly Default Property Item ( _
    index1 As Integer, _
    index2 As Integer _
) As Cell 
    Get
'Utilisation
Dim instance As CellSet 
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 prend en charge l'utilisation de propriétés indexées, mais pas la déclaration de nouvelles propriétés.

Paramètres

  • index1
    Type : System.Int32
    The zero-based index on the first axis of the Cell to find.
  • index2
    Type : System.Int32
    The zero-based index on the second axis of the Cell to find.

Valeur de propriété

Type : Microsoft.AnalysisServices.AdomdClient.Cell
The Cell at the specified indexes.

Exceptions

Exception Condition
System.ArgumentException

The CellSet does not have exactly two axes.

System.ArgumentOutOfRangeException

Either index1 or index2 were less than 0, or greater than the number of tuples in their respective axes.

Notes

This property is optimized for two-dimensional cellsets. Any attempt to use this with a cellset that contains more or less than two dimensions raises an exception.

[!REMARQUE]

This property is optimized and can only be used with cellsets that contain exactly two axes.

Voir aussi

Référence

CellSet Classe

Surcharge Item

Espace de noms Microsoft.AnalysisServices.AdomdClient