MapWinGIS:Image UseTransparencyColor
From MapWindow GIS
UseTransparencyColor
Gets or sets whether or not the transparency color is being used when the image is displayed.
VB.NET Usage
Property UseTransparencyColor() As Boolean
Parameters
|
ReturnValue | A boolean value representing whether the transparency color is being used when the image is displayed. |
Sample Code
Private Sub UseTransparencyColor()
Dim image As New MapWinGIS.Image()
'Check if the transparency color is being used when the image is displayed
If image.UseTransparencyColor Then
'Set the image not to use the transparency color
image.UseTransparencyColor = False
Else
'Set the image to use the transparency color
image.UseTransparencyColor = True
End If
End Sub
VB 6 Usage
Property UseTransparencyColor() As Boolean
Parameters
|
ReturnValue | A boolean value representing whether the transparency color is being used when the image is displayed. |
Sample Code
Private Sub UseTransparencyColor()
Dim image As New MapWinGIS.image
'Check if the transparency color is being used when the image is displayed
If image.UseTransparencyColor Then
'Set the image not to use the transparency color
image.UseTransparencyColor = False
Else
'Set the image to use the transparency color
image.UseTransparencyColor = True
End If
End Sub
















