Open Table of Contents

ET GeoWizards Scripting

ExportNodes
(Go to the main page of the function)

Analyzes the nodes of a polyline layer and exports them as a point feature class.

Syntax    

Dim ET As  New ETGW_Core
Set variable = ET.ExportNodes(pInFeatureClass, sOutFileName, bDangling, bPseudo, bRegular, sFieldName)

The ExportNodes 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)
bDangling Required. A Boolean  indicating whether the dangling nodes will be exported
bPseudo Required. A Boolean  indicating whether the pseudo nodes will be exported
bRegular Required. A Boolean  indicating whether the regular nodes will be exported
sFieldName Required. A String  representing the name of the field that will be attached to the point attribute table. If for example the function is used to export the nodes of a street dataset and the "StreetName" is the field name to be used for each point in the point attribute table will be recorded all the streets that intersect in this node.

Example