Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 858 Bytes

File metadata and controls

42 lines (32 loc) · 858 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 [[VS:ReDrawAll]] before calling the the [VS:DoMenuTextByName|DoMenuTextByName] 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

  • Classes