MapWinGIS:GridColorScheme Break
From MapWindow GIS
Break
Gets a break from the color scheme using the specified index.
See also GridColorBreak
VB.NET Usage
ReadOnly Property Break(Index As Integer) As MapWinGIS.GridColorBreak
Parameters
|
Index | The index of the color break to be returned. |
| ReturnValue | The color break specified by the index. |
Sample Code
Private Sub GetBreak()
Dim scheme As New MapWinGIS.GridColorScheme()
Dim break As New MapWinGIS.GridColorBreak()
'Get the break indexed by 0 in the color scheme
break = scheme.Break(0)
End Sub
VB 6 Usage
ReadOnly Property Break(Index As Long) As GridColorBreak
Parameters
|
Index | The index of the color break to be returned. |
| ReturnValue | The color break specified by the index. |
Sample Code
Private Sub GetBreak()
Dim scheme As New MapWinGIS.GridColorScheme
Dim break As New MapWinGIS.GridColorBreak
'Get the break indexed by 0 in the color scheme
break = scheme.break(0)
End Sub
















