Gets the Dimension at the specified index.
The set operation is not supported.
Namespace: Endeca.NavigationAssembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)
Syntax
| C# |
|---|
public virtual Object this[ int index ] { get; set; } |
| Visual Basic |
|---|
Public Overridable Default Property Item ( _ index As Integer _ ) As Object Get Set |
| Visual C++ |
|---|
public: virtual property Object^ default[int index] { Object^ get (int index); void set (int index, Object^ value); } |
Parameters
- index
- Type: System..::..Int32
The zero-based index of the element to get.
Field Value
The Dimension at the specified index.Implements
IList..::..Item[([( Int32])])
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentOutOfRangeException | index is out of range. |
| System..::..NotSupportedException | Always for set operation. |