Gets the specified interval of a DateTimeScale.

In C#, this property is the indexer for the DateTimeScale class.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overrides ReadOnly Property Item ( _
	levelIndex As Integer _
) As Object
C#
public override Object Item [
	int levelIndex
] { get; }
C++
public:
virtual Object^ Item {
	Object^ get (int levelIndex) override;
}

Parameters

levelIndex (System.Int32)
The zero-based index of the element to get.

Value

A boxed DateTimeInterval.

Exceptions

ExceptionCondition
ArgumentOutOfRangeExceptionlevelIndex is less than zero or greater than or equal to Count.