Struct Int32Span
Holds a start and end value with integer precision.
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.WinForms.GridCommon.Utility
Assembly: Syncfusion.GridCommon.WinForms.dll
Syntax
public struct Int32Span
Constructors
Int32Span(Int32, Int32)
Initializes a new instance of the Int32Span struct.
Declaration
public Int32Span(int start, int end)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | start | The start. |
System.Int32 | end | The end. |
Properties
Count
Gets or sets the count (equals end - start + 1)
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The count. |
End
Gets or sets the end.
Declaration
public int End { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The end. |
Start
Gets or sets the start.
Declaration
public int Start { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The start. |