Open Table of Contents

ET GeoWizards Scripting

Build TIN
(Go to the main page of the function)

Builds TIN from a feature layer

Syntax    

Dim ET As  New ETGW_Core
Set variable = ET.BuildTIN(pInFeatureClass, sOutFileName, sElevationFieldName)

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

Part Description
variable An IFeatureClass object
pInFeatureClass Required. An IFeatureClass object (Point, Polyline or Polygon)
sOutFileName Required. A String - the full name of the output feature class (A feature class with the same full name should not exist)
sElevationFieldName Required. A String representing the field name (must be a numeric field) that will be used as a source for the elevation values

Example