ShowLower Property
ShowLower returns or sets the show lower surface state of a wireframe. It has a Boolean value. If this value is set to 'True', the bottom portion of the surface is shown. If this value is set to 'False', the bottom portion of the surface is not shown.
This works in sync with the RemoveHiddenLines property. If the RemoveHiddenLines property is set to 'True', only the places where the bottom of the wireframe is not obscured by other portions of the surface are drawn.
Syntax
object.ShowLower
object. ShowLower = Show
Parameter |
Type |
Description |
Show |
Boolean |
required |
Example 1
This example demonstrates how to return whether or not the lower surface of a wireframe is visible.
Debug.Print Wireframe.ShowLower
Example 2
This example demonstrates how to display the lower surface of a wireframe.
Wireframe.ShowLower = True
Used by: Wireframe object