MapWinGIS:GridColorBreak LowValue
From MapWindow GIS
LowValue
Gets or sets the lowest value in the color break.
VB.NET Usage
Property LowValue() As Double
Parameters
|
ReturnValue | The lowest value in the color break. |
Sample Code
Private Sub LowValue()
Dim break As New MapWinGIS.GridColorBreak()
Dim low As Double
'Get the low value in the color break
low = break.LowValue
'Set the low value in the color break
break.LowValue = 1000
End Sub
VB 6 Usage
Property LowValue() As Double
Parameters
|
ReturnValue | The lowest value in the color break. |
Sample Code
Private Sub LowValue()
Dim break As New MapWinGIS.GridColorBreak
Dim low As Double
'Get the low value in the color break
low = break.LowValue
'Set the low value in the color break
break.LowValue = 1000
End Sub
















