MapWinGIS:ShapefileColorScheme NumBreaks
From MapWindow GIS
NumBreaks
Gets the number of color breaks in the shapefile color scheme.
VB.NET Usage
Function NumBreaks() As Integer
Parameters
|
ReturnValue | The number of color breaks in the shapefile color scheme. |
Sample Code
Private Sub ShapefileColorSchemeBreakCount()
Dim colorscheme As New MapWinGIS.ShapefileColorScheme()
Dim count As Integer
'Get the number of color breaks in the color scheme
count = colorscheme.NumBreaks
End Sub
VB 6 Usage
Function NumBreaks() As Long
Parameters
|
ReturnValue | The number of color breaks in the shapefile color scheme. |
Sample Code
Private Sub ShapefileColorSchemeBreakCount()
Dim colorscheme As New MapWinGIS.ShapefileColorScheme
Dim count As Long
'Get the number of color breaks in the color scheme
count = colorscheme.NumBreaks
End Sub
















