public static TinEditor CreateFromFeatureClass( FeatureClass featureClass, QueryFilter queryFilter, Field heightField, Field tagField, TinSurfaceType tinSurfaceType )
Public Shared Function CreateFromFeatureClass( _ ByVal featureClass As FeatureClass, _ ByVal queryFilter As QueryFilter, _ ByVal heightField As Field, _ ByVal tagField As Field, _ ByVal tinSurfaceType As TinSurfaceType _ ) As TinEditor
Parameters
- featureClass
- The feature class that provides the input geometries from which to create the TIN.
- queryFilter
- The filter that may be used to select a subset of features. This can be null. If it is null, then all the geometries in the feature class are used.
- heightField
- A field in the feature class that indicates where the heights for the shapes come from. If the shape geometry is 3D, and that's what you want to use, pass the shape field. Otherwise, a numeric field can be used.
- tagField
- A numeric field in the feature class used to assign tags to corresponding elements in the TIN. Tag values are integers that are assigned to nodes, edges, or triangles. They have user defined meaning (e.g. node accuracy, land cover, etc.). If no tag values are to be used pass null.
- tinSurfaceType
- A surface type indicating how the input feature geometry is incorporated into the triangulation.
Return Value
The newly created TIN editor in edit mode.