MapWinGIS:GridColorScheme InsertBreak
From MapWindow GIS
InsertBreak
Inserts a color break into the color scheme.
See also GridColorBreak
VB.NET Usage
Sub InsertBreak(BrkInfo As MapWinGIS.GridColorBreak)
Parameters
|
BrkInfo | The color break to be inserted into the color scheme. |
Sample Code
Private Sub InsertBreak()
Dim grid As New MapWinGIS.Grid()
Dim colorscheme As New MapWinGIS.GridColorScheme()
Dim break As New MapWinGIS.GridColorBreak()
'Set the color break high value to represent the grid's maximum value
break.HighValue = grid.Maximum
'Set the color break low value to represent the grid's minimum value
break.LowValue = grid.Minimum
'Set the color break high color to red
break.HighColor = Convert.ToUInt32(RGB(255, 0, 0))
'Set the color break low color to blue
break.LowColor = Convert.ToUInt32(RGB(0, 0, 255))
'Insert color break into color scheme
colorscheme.InsertBreak(break)
End Sub
VB 6 Usage
Sub InsertBreak(BrkInfo As GridColorBreak)
Parameters
|
BrkInfo | The color break to be inserted into the color scheme. |
Sample Code
Private Sub InsertBreak()
Dim grid As New MapWinGIS.grid
Dim colorscheme As New MapWinGIS.GridColorScheme
Dim break As New MapWinGIS.GridColorBreak
'Set the color break high value to represent the grid's maximum value
break.HighValue = grid.Maximum
'Set the color break low value to represent the grid's minimum value
break.LowValue = grid.Minimum
'Set the color break high color to red
break.Highcolor = RGB(255, 0, 0)
'Set the color break low color to blue
break.Lowcolor = RGB(0, 0, 255)
'Insert color break into color scheme
colorscheme.InsertBreak (break)
End Sub
















