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
















