MapWinGIS:GridColorScheme LightSourceIntensity
From MapWindow GIS
LightSourceIntensity
Gets or sets the intensity of the light source for the color scheme. Only applies to hillshaded breaks.
VB.NET Usage
Property LightSourceIntensity() As Double
Parameters
|
ReturnValue | The intensity of the light source for the color scheme. |
Sample Code
Private Sub LightSourceIntensity()
Dim scheme As New MapWinGIS.GridColorScheme()
Dim intensity As Double
'Set the intensity value
intensity = 50
'Set the intensity of the light source for the color scheme
scheme.LightSourceIntensity = intensity
'Get the intensity of the light source for the color scheme
intensity = scheme.LightSourceIntensity
End Sub
VB 6 Usage
Property LightSourceIntensity() As Double
Parameters
|
ReturnValue | The intensity of the light source for the color scheme. |
Sample Code
Private Sub LightSourceIntensity()
Dim scheme As New MapWinGIS.GridColorScheme
Dim intensity As Double
'Set the intensity value
intensity = 50
'Set the intensity of the light source for the color scheme
scheme.LightSourceIntensity = intensity
'Get the intensity of the light source for the color scheme
intensity = scheme.LightSourceIntensity
End Sub
















