Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 626 Bytes

File metadata and controls

34 lines (27 loc) · 626 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