Class Int32Span
Holds a start and end value with integer precision.
Inheritance
System.Object
Int32Span
Namespace: Syncfusion.Maui.GridCommon.Utility
Assembly: Syncfusion.Maui.GridCommon.dll
Syntax
public sealed class Int32Span : ValueType
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. |