MapWinGIS:Image Close
From MapWindow GIS
Close
Closes the image.
VB.NET Usage
Function Close() As Boolean
Parameters
|
ReturnValue | A boolean value representing the success or failure of closing the image. |
Sample Code
Private Sub CloseImage()
Dim image As New MapWinGIS.Image
Dim success As Boolean
'Close the image
success = image.Close
'Display failure message if the image was not successfully closed
If Not success Then
MsgBox("The image was not successfully closed.")
End If
End Sub
VB 6 Usage
Function Close() As Boolean
Parameters
|
ReturnValue | A boolean value representing the success or failure of closing the image. |
Sample Code
Private Sub CloseImage()
Dim image As New MapWinGIS.image
Dim success As Boolean
'Close the image
success = image.Close
'Display failure message if the image was not successfully closed
If Not success Then
MsgBox ("The image was not successfully closed.")
End If
End Sub
















