Provides access to members that control simple arrays of TIN nodes.
Members
Name | Description | |
---|---|---|
Add | Restricted. | |
Count | The number of elements in the array. | |
Element | The element in the array. | |
Insert | Restricted. | |
Remove | Restricted. | |
RemoveAll | Restricted. |
ITinNodeArray.Add Method
Restricted.
Public Sub Add ( _
ByVal pNode As ITinNode _
)
public void Add (
ITinNode pNode
);
ITinNodeArray.Count Property
The number of elements in the array.
Public ReadOnly Property Count As Integer
public int Count {get;}
ITinNodeArray.Element Property
The element in the array.
Public Function get_Element ( _
ByVal Index As Integer _
) As ITinNode
public ITinNode get_Element (
int Index
);
ITinNodeArray.Insert Method
Restricted.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pNode As ITinNode _
)
public void Insert (
int Index,
ITinNode pNode
);
ITinNodeArray.Remove Method
Restricted.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
ITinNodeArray.RemoveAll Method
Restricted.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement ITinNodeArray
Classes | Description |
---|---|
TinNodeArray | The Esri TinNodeArray component. |