This document is archived and information here might be outdated.  Recommended version.


ITinElement.Init Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (GeoDatabase)  

ITinElement.Init Method

Initializes a new TIN element.

[Visual Basic .NET]
Public Sub Init ( _
    ByVal pTin As ITin, _
    ByVal Index As Integer _
)
[C#]
public void Init (
    ITin pTin,
    int Index
);
[C++]
HRESULT Init(
  ITin* pTin,
  long Index
);
[C++]

Parameters pTin [in]
pTin is a parameter of type ITin Index [in] Index is a parameter of type long

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

After instantiating a new TIN element you can initialize its properties with Init. The input arguments include a TIN object and an index number. The base index number for nodes, edges, and triangles is 1.

See Also

ITinElement Interface