JoinLines Method
Description
Joins LineString items within a tolerance.
The Named List containing the LineString items to be joined. The tolerance in current units within which to consider joins.
Syntax
Visual Basic |
---|
Public Function JoinLines( _ ByVal list As String, _ ByVal tolerance As Double _ ) As Integer |
Parameters
- list
- The Named List containing the LineString items to be joined.
- tolerance
- The tolerance in current units within which to consider joins.
Remarks
This method will only join LineString items within the given tolerance. The Named List will be re-filled with the results of the join, and will have only one element if all of the original LineString items were successfully joined together.
Available: GEO OD SISpy
Group:
Example
sis.JoinLines ("Lines", 1)
Joins all the LineString items in the list that are within the specified tolerance of each other.