RemoveHiddenLines Property
RemoveHiddenLines returns or sets the remove hidden lines state of a wireframe. It has a Boolean value. When this value is set to 'True', the X and Y lines behind other lines on the surface are not displayed. If the value is set to 'False', the X and Y lines are displayed and the wireframe takes on a transparent appearance.
Syntax
object.RemoveHiddenLines
object. RemoveHiddenLines = Remove
Parameter |
Type |
Description |
Remove |
Boolean |
required |
Remarks
There is no hidden line removal for contour plots overlaid on wireframes.
Example 1
This example demonstrates how to return whether or not hidden lines are removed from view.
Debug.Print Wireframe.RemoveHiddenLines
Example 2
This example demonstrates how to remove hidden lines from view.
Wireframe.RemoveHiddenLines = True
Used by: Wireframe object