Returns the visibility status of the specified class.
FUNCTION GetCVis(className : STRING): INTEGER;def vs.GetCVis(className):
return INTEGER| Name | Type | Description |
|---|---|---|
| className | STRING | Name of class. |
Also, though a warning is generated, passing a string to a non-existent class returns 0.
PROCEDURE Example;
BEGIN
Message(GetCVis('Dimension'));
END;
RUN(Example);def Example():
vs.Message(vs.GetCVis('Dimension'))
Example()Availability: from All Versions