This document is archived and information here might be outdated. Recommended version. |
Adds a 3D point to the TIN. pSeed can be NULL or Nothing.
[Visual Basic .NET] Public Sub AddPointZ ( _ ByVal pPoint As IPoint, _ ByVal TagValue As Integer, _ ByVal pSeed As ITinNode _ )
[C#] public void AddPointZ ( IPoint pPoint, int TagValue, ITinNode pSeed );
[C++]
HRESULT AddPointZ(
IPoint* pPoint,
long TagValue,
ITinNode* pSeed
);
[C++]
Parameters pPoint [in]
pPoint is a parameter of type IPoint* TagValue [in]
TagValue is a parameter of type long pSeed
pSeed is a parameter of type ITinNode*
The point is the 3D point to be added.
The TagValue is a signed long integer that will be assigned to the resulting node. A zero can be used to ignore node tag value assignment.
The Seed is a TinNode pointer. If you're interested in obtaining a reference to the added node then have the seed point to a TinNode object. The object will then be populated with the appropriate properties. If you're not interested in obtaining a seed then pass a NULL pointer ('Nothing' in VisualBasic).