Share via


CellCollection.Item Property (Int32, Int32)

Gets the specified Cell from the collection by its coordinate.

Namespace: Microsoft.AnalysisServices.AdomdClient
Assembly: Microsoft.AnalysisServices.AdomdClient (in microsoft.analysisservices.adomdclient.dll)

Syntax

'Declaration
Public ReadOnly Default Property Item ( _
    index1 As Integer, _
    index2 As Integer _
) As Cell
public Cell this [
    int index1,
    int index2
] { get; }
public:
property Cell^ default [int, int] {
    Cell^ get (int index1, int index2);
}
/** @property */
public Cell get_Item (int index1, int index2)

Parameters

  • index1
    The zero-based index on the first axis of the Cell to find.
  • index2
    The zero-based index on the second axis of the Cell to find.

Exceptions

Exception type Condition
System.ArgumentException

The CellSet does not have exactly two axes.

System.ArgumentOutOfRangeException

Either index1 or index2 were less 0, or greater than the number of tuples in their respective axes.

Remarks

This property is optimized for two-dimensional cellsets. Any attempt to use this with a cellset that contains more or less than two dimensions raises an exception.

Note

This property is optimized and can only be used with cellsets that contain exactly two axes.

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

CellCollection Class
CellCollection Members
Microsoft.AnalysisServices.AdomdClient Namespace