Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 677 Bytes

File metadata and controls

44 lines (35 loc) · 677 Bytes

GetCVis

Description

Returns the visibility status of the specified class.

FUNCTION GetCVis(className : STRING): INTEGER;
def vs.GetCVis(className):
    return INTEGER

Parameters

Name Type Description
className STRING Name of class.

Remarks

Also, though a warning is generated, passing a string to a non-existent class returns 0.

Examples

==== VectorScript ====

PROCEDURE Example;
BEGIN
Message(GetCVis('Dimension'));
END;
RUN(Example);

==== Python ====

def Example():
	vs.Message(vs.GetCVis('Dimension'))
Example()

Version

Availability: from All Versions

Category

  • Classes