Returns the HistogramBin corresponding
to the given index value.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public ReadOnly Property Item ( _ index As Integer _ ) As HistogramBin |
| C# |
|---|
public HistogramBin Item [ int index ] { get; } |
| C++ |
|---|
public: HistogramBin^ Item { HistogramBin^ get (int index); } |
Parameters
- index (System.Int32)
- The zero-based index of the bin.
Value
A HistogramBin structure that contains the given value, or Empty if if the value is out of bounds.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero or greater than or equal to Count. |