MapWinGIS:GridColorBreak LowColor
From MapWindow GIS
LowColor
Gets or sets the color representing the lowest value in the color break.
VB.NET Usage
Property LowColor() System.UInt32
Parameters
|
ReturnValue | The color representing the lowest value in the color break. This is a UInt32 representation of an RGB value. |
Sample Code
Private Sub Lowcolor()
Dim break As New MapWinGIS.GridColorBreak()
Dim col As System.UInt32
'Set the color to represent the lowest value in the color break
break.LowColor = System.Convert.ToUInt32(RGB(0, 200, 0))
'Get the color representing the lowest value in the color break
col = break.LowColor
End Sub
VB 6 Usage
Property LowColor() OLE_COLOR
Parameters
|
ReturnValue | The color representing the lowest value in the color break. |
Sample Code
Private Sub Lowcolor()
Dim break As New MapWinGIS.GridColorBreak
Dim col As OLE_COLOR
'Set the color to represent the lowest value in the color break
break.Lowcolor = RGB(0, 200, 0)
'Get the color representing the lowest value in the color break
col = break.Lowcolor
End Sub
















