MapWinGIS:GridHeader Notes
From MapWindow GIS
Notes
Gets or sets notes or any additional information about the grid stored in the grid header.
VB.NET Usage
Property Notes() As String
Parameters
|
ReturnValue | The notes or additional information associated with the grid header. |
Sample Code
Private Sub HeaderNotes()
Dim header As New MapWinGIS.GridHeader()
Dim notes As String
'Set the notes to be used
notes = "This is a test grid header."
'Set the notes for the grid header
header.Notes = notes
'Get the notes for the grid header
notes = header.Notes
End Sub
VB 6 Usage
Property Notes() As String
Parameters
|
ReturnValue | The notes or additional information associated with the grid header. |
Sample Code
Private Sub HeaderNotes()
Dim header As New MapWinGIS.GridHeader
Dim notes As String
'Set the notes to be used
notes = "This is a test grid header."
'Set the notes for the grid header
header.notes = notes
'Get the notes for the grid header
notes = header.notes
End Sub
















