CellSet.Item プロパティ (ICollection)
絶対軸インデックスのコレクションを含む ICollection インターフェイスで指定される Cell を取得します。 Microsoft Visual C# の場合、このプロパティは CellCollection クラスのインデクサーとなります。
名前空間: Microsoft.AnalysisServices.AdomdClient
アセンブリ: Microsoft.AnalysisServices.AdomdClient (Microsoft.AnalysisServices.AdomdClient.dll)
構文
'宣言
Public ReadOnly Default Property Item ( _
indexes As ICollection _
) As Cell
Get
'使用
Dim instance As CellSet
Dim indexes As ICollection
Dim value As Cell
value = instance(indexes)
public Cell this[
ICollection indexes
] { get; }
public:
property Cell^ default[ICollection^ indexes] {
Cell^ get (ICollection^ indexes);
}
member Item : Cell
JScript はインデックス化されたプロパティの使用をサポートしていますが、新規の宣言はサポートしていません。
パラメーター
- indexes
型: System.Collections.ICollection
CellSet 内の軸の数以下の数の要素を含む ICollection です。
プロパティ値
型: Microsoft.AnalysisServices.AdomdClient.Cell
指定された軸インデックスのコレクションを使用して取得した Cell です。
説明
ICollection は、CellSet で表される各軸から単一のポイントを参照することで作成される組を表します。 ICollection 内の各要素のインデックスは、CellSet の Axes コレクション内の各軸のインデックスと一致し、各要素の値は、各軸の行の 0 から始まるインデックスを表します。
ICollection が Axes コレクションより多くの要素を含む場合は、例外がスローされます。
ICollection インターフェイスの詳細については、「System.Collections.ICollection」を参照してください。