Provides access to members that control simple arrays of TIN edges.
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. |
ITinEdgeArray.Add Method
Restricted.
Public Sub Add ( _
ByVal pEdge As ITinEdge _
)
public void Add (
ITinEdge pEdge
);
ITinEdgeArray.Count Property
The number of elements in the array.
Public ReadOnly Property Count As Integer
public int Count {get;}
ITinEdgeArray.Element Property
The element in the array.
Public Function get_Element ( _
ByVal Index As Integer _
) As ITinEdge
public ITinEdge get_Element (
int Index
);
ITinEdgeArray.Insert Method
Restricted.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pEdge As ITinEdge _
)
public void Insert (
int Index,
ITinEdge pEdge
);
ITinEdgeArray.Remove Method
Restricted.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
ITinEdgeArray.RemoveAll Method
Restricted.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement ITinEdgeArray
Classes | Description |
---|---|
TinEdgeArray | The Esri TinEdgeArray component. |