RangeTUnion Method (RangeT) |
Gets the union of this instance and an intersecting range.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Nullable<Range<T>> Union(
Range<T> range
)
Public Function Union (
range As Range(Of T)
) As Nullable(Of Range(Of T))
member Union :
range : Range<'T> -> Nullable<Range<'T>>
Parameters
- range
- Type: Eto.FormsRangeT
Range to union with.
Return Value
Type:
NullableRangeTThe union of this instance and the specified range, or null if they are not intersecting.
Remarks See Also