Propriété Item
Gets the specified Tuple object.
Espace de noms : Microsoft.AnalysisServices.AdomdServer
Assembly : msmgdsrv (en msmgdsrv.dll)
Syntaxe
'Déclaration
Public ReadOnly Default Property Item ( _
index As Integer _
) As Tuple
Get
'Utilisation
Dim instance As SetBuilder
Dim index As Integer
Dim value As Tuple
value = instance(index)
public Tuple this[
int index
] { get; }
public:
property Tuple^ default[int index] {
Tuple^ get (int index);
}
member Item : Tuple
JScript prend en charge l'utilisation de propriétés indexées, mais pas la déclaration de nouvelles propriétés.
Paramètres
- index
Type : System. . :: . .Int32
The index of the Tuple in the set.
Valeur de propriété
Type : Microsoft.AnalysisServices.AdomdServer. . :: . .Tuple
The specified Tuple.
Notes
You can only access this member as an indexer. You cannot access this member as a method call. For example, you can call this member as an indexer, such as sb[0], but you cannot call this as a method, such as sb.this(0).