MapWinGIS:GridColorBreak Caption
From MapWindow GIS
Caption
Gets or sets the caption to display for the color break.
VB.NET Usage
Property Caption() As String
Parameters
|
ReturnValue | The caption to be displayed for the color break. |
Sample Code
Private Sub ColorBreakCaption()
Dim break As New MapWinGIS.GridColorBreak()
Dim caption As String
'Set the string to be used as the caption
caption = "Color Break 1"
'Set the caption for the color break
break.Caption = caption
'Get the caption for the color break
caption = break.Caption
End Subb
VB 6 Usage
Property Caption() As String
Parameters
|
ReturnValue | The caption to be displayed for the color break. |
Sample Code
Private Sub ColorBreakCaption()
Dim break As New MapWinGIS.GridColorBreak
Dim caption As String
'Set the string to be used as the caption
caption = "Color Break 1"
'Set the caption for the color break
break.caption = caption
'Get the caption for the color break
caption = break.caption
End Sub
















