MapWinGIS:Tin NumTriangles
From MapWindow GIS
NumTriangles
Gets the number of triangles in the TIN.
VB.NET Usage
ReadOnly Property NumTriangles() As Integer
Parameters
|
ReturnValue | The number of triangles in the TIN. |
Sample Code
Private Sub TIN_NumTriangles()
Dim tin As New MapWinGIS.Tin()
Dim count As Integer
'Get the number of triangles in the TIN
count = tin.NumTriangles
End Sub
VB 6 Usage
ReadOnly Property NumTriangles() As Long
Parameters
|
ReturnValue | The number of triangles in the TIN. |
Sample Code
Private Sub TIN_NumTriangles()
Dim tin As New MapWinGIS.tin
Dim count As Long
'Get the number of triangles in the TIN
count = tin.NumTriangles
End Sub
















