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