Class IndexRange
Specifies a range of indices.
Inheritance
System.Object
IndexRange
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public sealed class IndexRange : ValueType
Constructors
IndexRange(Int32, Int32)
Initializes a new instance of the IndexRange class.
Declaration
public IndexRange(int from, int to)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | from | The first index of range. |
| System.Int32 | to | The lase index of range. |
Properties
From
Gets or sets the first index of range.
Declaration
public int From { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | From. |
To
Gets or sets the last index of range.
Declaration
public int To { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | To. |