MapWinGIS:ShapefileColorBreak EndValue
From MapWindow GIS
EndValue
Gets or sets the value representing the end of the shapefile color break.
VB.NET Usage
Property EndValue() AsObject
Parameters
|
ReturnValue | The value representing the end of this color break. |
Sample Code
Private Sub ShapefileColorBreakEndValue()
Dim colorbreak As New MapWinGIS.ShapefileColorBreak()
Dim endvalue As Double
'Set the value to use as the end value
endvalue = 3000
'Set the endvalue for the shapefile color break
colorbreak.EndValue = endvalue
'Get the endvalue for the shapefile color break
endvalue = colorbreak.EndValue
End Sub
VB 6 Usage
Property EndValue() AsObject
Parameters
|
ReturnValue | The value representing the end of this color break. |
Sample Code
Private Sub ShapefileColorBreakEndValue()
Dim colorbreak As New MapWinGIS.ShapefileColorBreak
Dim endvalue As Double
'Set the value to use as the end value
endvalue = 3000
'Set the endvalue for the shapefile color break
colorbreak.endvalue = endvalue
'Get the endvalue for the shapefile color break
endvalue = colorbreak.endvalue
End Sub
















