LowerColor Property
The LowerColor property is superseded by LowerColorRGBA. Please consider using the more recent version. LowerColor has been retained for backwards compatibility.
The LowerColor property returns or sets the lower material color of a surface as an RGB value. Returns an srfColor.
Syntax
object.LowerColor
object.LowerColor = Color
Parameter |
Type |
Description |
Color |
required |
Remarks
- Use the enumeration [srfColorRed], RGB value [RGB(255,0,0)], or number [255] to set a color.
- The horizontal and vertical lighting angles, tilt, and ambient light color affect the lower color display.
Example 1
This example shows how to return the lower surface color.
Debug.Print "LowerColor = "; SurfaceMap.LowerColor
Example 2
This example shows how to set the lower surface color to red.
SurfaceMap.LowerColor= srfColorRed
Used by: Surface object