Struct IndexRange
Specifies a range of indices.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public struct IndexRange
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. |