ObjGetClassΒΆ

ObjGetClass returns the class name of an object.

ssClass = ObjGetClass(handle)

Return Value

ssClass is a string with the class name of the object of a given handle. If the object does not exist, the function returns an empty string.

ssClass is a string with one of the following values:

Value Meaning
OBJ_APPLICATION there is only one of this objects. It will be automatically created when UniPlot is started.
OBJ_DOCUMENT see DocCreate.
OBJ_PAGE see PageCreate.
OBJ_EDITOR see EdCreate.
OBJ_LAYER see LayerCreate.
OBJ_XYDATASET see XYCreate and TYCreate.
OBJ_XYZDATASET see XYZCreate and XYZCreateFromMatrix.
OBJ_TEXT see TBCreate.
OBJ_RECT see RBCreate.
OBJ_ELLIPSE see EBCreate.
OBJ_LINE see LBCreate.
OBJ_LINK see CBCreate.
OBJ_OLEITEM see GetObject.
OBJ_PEN see PenCreate.
OBJ_MARKER see MarkerCreate.
OBJ_FONT see FontCreate.
OBJ_FILE see fopen.
OBJ_CONTAINER see CnCreate.
OBJ_MAP see MapCreate.
OBJ_SYNEDITOR see SynEdCreate.
OBJ_TABLE see TableCreate.

Parameters

handle

handle identifies an UniPlot object.

id-1572090