Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 888 Bytes

File metadata and controls

41 lines (32 loc) · 888 Bytes

HideClass

Description

Sets the class visibility of the specified class to hidden (invisible) status.

PROCEDURE HideClass(className : STRING);
def vs.HideClass(className):
    return None

Parameters

Name Type Description
className STRING Name of class.

Remarks

If you're hiding a class for the purpose of printing with that class turned off, you have to do a ReDrawAll before calling the the DoMenuTextByName('Print',0) call, or else the class doesn't get hidden until after the script completes execution.

Examples

VectorScript

HideClass('Dimension');

Python

vs.HideClass('Dimension')

See Also

VS Functions: ShowClass

Version

Availability: from All Versions

Category