MapWinGIS:Grid Minimum
From MapWindow GIS
Minimum
Returns the minimum value stored in the grid.
VB.NET Usage
ReadOnly Property Minimum() As Object
Parameters
|
ReturnValue | The minimum value stored in the grid. |
Sample Code
Private Sub Minimum()
Dim grid As New MapWinGIS.Grid()
'Open a grid from disk
grid.Open("C:\grid.asc")
'Display the minimum value stored in the grid
MsgBox(Str(grid.Minimum))
'Close the grid
grid.Close()
End Sub
VB 6 Usage
ReadOnly Property Minimum() As Object
Parameters
|
ReturnValue | The minimum value stored in the grid. |
Sample Code
Private Sub Minimum()
Dim grid As New MapWinGIS.grid
'Open a grid from disk
grid.Open ("C:\grid.asc")
'Display the minimum value stored in the grid
MsgBox (Str(grid.Minimum))
'Close the grid
grid.Close
End Sub
















