MapWinGIS:ShapefileColorBreak StartValue
From MapWindow GIS
StartValue
Gets or sets the value representing the start of the shapefile color break.
VB.NET Usage
Property StartValue() As Object
Parameters
|
ReturnValue | The value representing the start of the color break. |
Sample Code
Private Sub ShapefileColorBreakStartValue()
Dim colorbreak As New MapWinGIS.ShapefileColorBreak()
Dim startvalue As Double
'Set the value to use as the start value
startvalue = 1000
'Set the startvalue for the shapefile color break
colorbreak.StartValue = startvalue
'Get the startvalue for the shapefile color break
startvalue = colorbreak.StartValue
End Sub
VB 6 Usage
Property StartValue() As Object
Parameters
|
ReturnValue | The value representing the start of the color break. |
Sample Code
Private Sub ShapefileColorBreakStartValue()
Dim colorbreak As New MapWinGIS.ShapefileColorBreak
Dim startvalue As Double
'Set the value to use as the start value
startvalue = 1000
'Set the startvalue for the shapefile color break
colorbreak.startvalue = startvalue
'Get the startvalue for the shapefile color break
startvalue = colorbreak.startvalue
End Sub
















