Gets the intersection of this instance and the specified range.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Nullable<Range<T>> Intersect(
Range<T> range
)
Public Function Intersect (
range As Range(Of T)
) As Nullable(Of Range(Of T))
member Intersect :
range : Range<'T> -> Nullable<Range<'T>>
Parameters
- range
- Type: Eto.FormsRangeT
Range to intersect with.
Return Value
Type:
NullableRangeTA new instance of a range that is the intersection of this instance and the specified range, or null if they do not intersect.
See Also