ET GeoWizards Scripting
Point Intersection
(Go to the main page of the function)
Creates a point feature class with the intersection points of two polyline layers or a polyline layer and the boundaries of the polygons from a polygon layer.
Syntax
Dim ET As New ETGW_Core
Set variable = ET.PointIntersection(pInFeatureClass,pReferenceFeatureClass,
_
sOutFileName, sMessage)
The PointIntersection 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) |
| pReferenceFeatureClass | Required. An IFeatureClass object (a Polyline or Polygon 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) |
| sMessage | Optional. In a case of failure - description of the cause. If the functions completes with success an empty string will be returned. |