MapWinGIS:Grid CdlgFilter
From MapWindow GIS
CdlgFilter
Returns the common dialog filter containing all supported file extensions in string format.
VB.NET Usage
ReadOnly Property CdlgFilter() As String
Parameters
|
ReturnValue | The filter containing all file extensions supported by MapWinGIS. |
Sample Code
Private Sub CdlgFilter()
Dim grid As New MapWinGIS.Grid()
'Open a grid from disk
grid.Open("C:\grid.asc")
'Display the supported file formats in a message box
MsgBox(grid.CdlgFilter)
'Close the grid
grid.Close()
End Sub
VB 6 Usage
ReadOnly Property CdlgFilter() As String
Parameters
|
ReturnValue | The filter containing all file extensions supported by MapWinGIS. |
Sample Code
Private Sub CdlgFilter()
Dim grid As New MapWinGIS.grid
'Open a grid from disk
grid.Open ("C:\grid.asc")
'Display the supported file formats in a message box
MsgBox (grid.CdlgFilter)
'Close the grid
grid.Close
End Sub
















