FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / RangeElement<T> Class / JointList Method
The first list
The second list


In This Topic
JointList Method
In This Topic
Joins the list of two RangeElement<T> objects to form a new list of RangeElement<T> objects. The element of the new list is created by intersecting the element of the first list with the element of the second list.
Syntax
'Declaration
 
Public Shared Function JointList( _
   ByVal firstList As List(Of RangeElement(Of T)), _
   ByVal secondList As List(Of RangeElement(Of T)) _
) As List(Of RangeElement(Of T))
 
'Usage
 
Dim firstList As List(Of RangeElement(Of T))
Dim secondList As List(Of RangeElement(Of T))
Dim value As List(Of RangeElement(Of T))
 
value = RangeElement(Of T).JointList(firstList, secondList)

Parameters

firstList
The first list
secondList
The second list

Return Value

The new list of RangeElement<T> objects.
See Also