Item プロパティ
指定された Tuple オブジェクトを取得します。
名前空間: Microsoft.AnalysisServices.AdomdServer
アセンブリ: msmgdsrv (msmgdsrv.dll)
構文
'宣言
Public ReadOnly Default Property Item ( _
index As Integer _
) As Tuple
Get
'使用
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 はインデックス化されたプロパティの使用をサポートしていますが、新規の宣言はサポートしていません。
パラメーター
- index
型: System. . :: . .Int32
セット内の Tuple のインデックスです。
プロパティ値
型: Microsoft.AnalysisServices.AdomdServer. . :: . .Tuple
指定した Tuple です。
説明
このメンバには、インデクサでのみアクセスできます。メソッド呼び出しでこのメンバにアクセスすることはできません。たとえば、このメンバをインデクサで sb[0] のように呼び出すことはできますが、メソッドで sb.this(0) のように呼び出すことはできません。