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