ET GeoWizards Scripting
Build Polygons
(Go to the main page of the
function)
Builds polygons from a polyline feature class
Syntax
Dim ET As New ETGW_Core
Set variable = ET.BuildPolygons (pInFeatureClass,
sOutFileName, bClean, dFuzzy )
The BuildPolygons 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) |
| bClean | Required. A Boolean indicating whether the input polyline dataset will be cleaned before building. |
| dFuzzy | Required. A Double setting the Fuzzy tolerance (in the units of the input dataset) to be used if the bClean = True. If bClean = False this parameter is ignored |