Propriété Item
Gets the specified Member object.
Espace de noms : Microsoft.AnalysisServices.AdomdServer
Assembly : msmgdsrv (en msmgdsrv.dll)
Syntaxe
'Déclaration
Public ReadOnly Default Property Item ( _
index As Integer _
) As Member
Get
'Utilisation
Dim instance As TupleBuilder
Dim index As Integer
Dim value As Member
value = instance(index)
public Member this[
int index
] { get; }
public:
property Member^ default[int index] {
Member^ get (int index);
}
member Item : Member
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 Member in the tuple.
Valeur de propriété
Type : Microsoft.AnalysisServices.AdomdServer. . :: . .Member
The specified Member.
Notes
You can only access this function as an indexer. You cannot access this function as a method call itself. For example, you can call this function as an indexor, such as tb[0], but you cannot call this as a function, such as tb.this(0).