Provides access to members that control TIN polygon characteristics.
Members
Name | Description | |
---|---|---|
AsEdges | The specified polygon as triangle edges. | |
AsNodes | The specified polygon as TIN nodes. | |
AsPolygon | The specified polygon as polygon geometry. | |
AsTriangles | The specified polygon as its constituent triangles. | |
GetBoundaryEdgeType | Restricted. |
ITinPolygon.AsEdges Method
The specified polygon as triangle edges.
Public Function AsEdges ( _
) As IEnumTinEdge
public IEnumTinEdge AsEdges (
);
ITinPolygon.AsNodes Method
The specified polygon as TIN nodes.
Public Function AsNodes ( _
) As IEnumTinNode
public IEnumTinNode AsNodes (
);
Description
Returns a node enumerator representing the nodes around the polygon exterior.
The resulting enumerator will return nodes in ordered sequence, ring by ring. The end of each ring is indicated by repeating the first node of the ring.
ITinPolygon.AsPolygon Method
The specified polygon as polygon geometry.
Public Function AsPolygon ( _
ByVal pNodeFilter As ITinFilter, _
ByVal bGetZ As Boolean _
) As IPolygon
public IPolygon AsPolygon (
ITinFilter pNodeFilter,
bool bGetZ
);
Description
The returned polygon has not been topologically simplified for the sake of performance. For example, you may just want to draw the polygon. Drawing doesn't require simplification. If you'll be performing topological operations on the polygon you will need to call ITopologicalOperator.Simplify.
The filter argument can be NULL ('Nothing' in VB) if no filtering is desired.
ITinPolygon.AsTriangles Method
The specified polygon as its constituent triangles.
Public Function AsTriangles ( _
) As IEnumTinTriangle
public IEnumTinTriangle AsTriangles (
);
ITinPolygon.GetBoundaryEdgeType Method
Restricted.
Public Sub GetBoundaryEdgeType ( _
ByRef pType As esriTinEdgeType _
)
public void GetBoundaryEdgeType (
ref esriTinEdgeType pType
);
Classes that implement ITinPolygon
Classes | Description |
---|---|
TinPolygon | The Esri TinPolygon component. |