Open Table of Contents

ET GeoWizards Scripting

DissolvePolylines
(Go to the main page of the function)

Combines polylines, which share a pseudo node, based on user specified attributes. The resulting polyline data set does not contain multi-part polylines. The topology of the data set is preserved. The function works like the UNSPLIT command of ArcEdit. The attribute update rules include range values update

Syntax    

Dim ET As  New ETGW_Core
Set variable = ET.DissolvePolylines(pInFeatureClass, sOutFileName, disFields)

The DissolvePolylines  method syntax has the following object qualifier and arguments:    

Part Description
variable An IFeatureClass object
pInFeatureClass Required. An IFeatureClass object (Must be a Polyline feature class)
sOutFileName Required. A String - the full name of the output feature class (A feature class with the same full name should not exist)
disFields() Required. A String Array containing the names of the fields to be used for dissolving

Example