MapWinGIS:Tin Max
From MapWindow GIS
Max
Gets the maximum x, y, and z values of the TIN's extents.
VB.NET Usage
Sub Max(ByRef x As Double, ByRef y As Double, ByRef z As Double)
Parameters
|
x | Reference parameter. Returns the maximum x value of the TIN's extents. |
| y | Reference parameter. Returns the maximum y value of the TIN's extents. |
| Z | Reference parameter. Returns the maximum Z value of the TIN's extents. |
Sample Code
Private Sub TINMax()
Dim tin As New MapWinGIS.Tin()
Dim x As Double, y As Double, Z As Double
'Get the maximum values for x, y, and z in the TIN's extents
tin.Max(x, y, Z)
End Sub
VB 6 Usage
Sub Max(ByRef x As Double, ByRef y As Double, ByRef z As Double)
Parameters
|
x | Reference parameter. Returns the maximum x value of the TIN's extents. |
| y | Reference parameter. Returns the maximum y value of the TIN's extents. |
| Z | Reference parameter. Returns the maximum Z value of the TIN's extents. |
Sample Code
Private Sub TINMax()
Dim tin As New MapWinGIS.tin
Dim x As Double, y As Double, Z As Double
'Get the maximum values for x, y, and z in the TIN's extents
tin.max x, y, Z
End Sub
















