Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 601 Bytes

File metadata and controls

33 lines (27 loc) · 601 Bytes

HideLayer

Description

Procedure HideLayer sets the visibility status of the active layer to hidden. Objects on hidden layers will not be viewable from other layers.

PROCEDURE HideLayer;
def vs.HideLayer():
    return None

Examples

VectorScript

Layer('Future Construction');
HideLayer;
{hides the layer 'Future Construction'}

Python

vs.Layer('Future Construction')
vs.HideLayer()
#{hides the layer 'Future Construction'}

Version

Availability: from All Versions

Category