Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 587 Bytes

File metadata and controls

35 lines (27 loc) · 587 Bytes

GetClass

Description

Function GetClass returns the class assigned to the referenced object. None is returned if the object has no class assigned to it.

FUNCTION GetClass(h : HANDLE): STRING;
def vs.GetClass(h):
    return STRING

Parameters

Name Type Description
h HANDLE Handle to object.

Examples

==== VectorScript ====

ObjectClass:=GetClass(handleToObject);

==== Python ====

ObjectClass = vs.GetClass(handleToObject)

Version

Availability: from All Versions

Category

  • Object Attributes