Creates a copy of the current range with a different start value.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Range<T> WithStart(
T start
)
Public Function WithStart (
start As T
) As Range(Of T)
member WithStart :
start : 'T -> Range<'T>
Parameters
- start
- Type: T
Start of the new range.
Return Value
Type:
RangeTA new instance of the range with the specified start value.
See Also