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


ITinElement.Init Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITinElement Interface > ITinElement.Init Method
ArcGIS Developer Help

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