Item 屬性
Gets the specified Tuple object.
命名空間: 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
The index of the Tuple in the set.
屬性值
型別:Microsoft.AnalysisServices.AdomdServer. . :: . .Tuple
The specified Tuple.
備註
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).