ShowBase Property
ShowBase returns or sets the show base state for a wireframe or surface. The base is the area "underneath" the wireframe.
It has a Boolean value. If this value is set to 'True', the base of the wireframe is displayed. If this value is set to 'False', the base is hidden.
Syntax
object.ShowBase
object. ShowBase = Show
Parameter |
Type |
Description |
Show |
Boolean |
required |
Remarks
See BaseLine to set the current line color of the wireframe and surface bases. See BaseFill to set the surface base fill.
Example 1
This example demonstrates how to return whether or not the base of a wireframe is displayed.
Debug.Print Wireframe.ShowBase
Example 2
This example demonstrates how to display the base of a wireframe.
Wireframe.ShowBase = True
Used by: Surface object, Wireframe object