RangeFromLength Method (Int32, Int32) |
Creates a new integer range with the specified start and length.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Range<int> FromLength(
int start,
int length
)
Public Shared Function FromLength (
start As Integer,
length As Integer
) As Range(Of Integer)
static member FromLength :
start : int *
length : int -> Range<int>
Parameters
- start
- Type: SystemInt32
Start of the range. - length
- Type: SystemInt32
Length of the range.
Return Value
Type:
RangeInt32A new range with the specified start and length.
See Also