MapWinGIS:ShapefileColorBreak Caption
From MapWindow GIS
Caption
Gets or sets the caption for the shapefile color break.
VB.NET Usage
Property Caption() As String
Parameters
|
ReturnValue | The caption for the shapefile color break. |
Sample Code
Private Sub ShapefileColorBreakCaption()
Dim colorbreak As New MapWinGIS.ShapefileColorBreak()
Dim caption As String
'Set the string to be used as the caption
caption = "test color break"
'Set the color break caption
colorbreak.Caption = caption
'Get the color break caption
caption = colorbreak.Caption
End Sub
VB 6 Usage
Property Caption() As String
Parameters
|
ReturnValue | The caption for the shapefile color break. |
Sample Code
Private Sub ShapefileColorBreakCaption()
Dim colorbreak As New MapWinGIS.ShapefileColorBreak
Dim caption As String
'Set the string to be used as the caption
caption = "test color break"
'Set the color break caption
colorbreak.caption = caption
'Get the color break caption
caption = colorbreak.caption
End Sub
















