ET GeoWizards Scripting
ClipIt
(Go to the main page of the function)
Clips a feature layer with the features of a polygon layer.
Syntax
Dim ET As New ETGW_Core
Set variable = ET.ClipIt(pInFeatureClass, pClipFeatureClass,
sOutFileName, dFuzzyTol)
The ClipIt method syntax has the following object qualifier and arguments:
| Part | Description |
|---|---|
| variable | An IFeatureClass object |
| pInFeatureClass | Required. An IFeatureClass object (Point, Polyline or Polygon feature class) |
| pClipFeatureClass | Required. An IFeatureClass object (Must be a Polygon feature class). The features of this feature class will be used for clipping |
| sOutFileName | Required. A String - the full name of the output feature class (A feature class with the same full name should not exist) |
| dFuzzyTol | Required. A Double representing the Fuzzy tolerance (in the units of the input dataset) to be used |
| sMessage | Optional. In a case of failure - description of the cause. If the functions completes with success an empty string will be returned. |