SetBuilder.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
类型:Int32
集中 Tuple 的索引。
属性值
类型:Microsoft.AnalysisServices.AdomdServer.Tuple
指定的 Tuple。
注释
只能访问此成员作为索引器。 您不能访问此成员作为方法调用。 例如,您可以调用此成员为索引器(如 sb[0]),但是不能调用它为方法(如 sb.this(0))。