NAME

iosGetObjectClass - get class of object

SYNOPSIS

iosGetObjectClass id

DESCRIPTION

This command returns the object class of a given object. The id is the return value from a previously called iosCreateObject or iosGetObjectAccess.

Example:

set id [iosGetObjectAccess testpoint]
set class [iosGetObjectClass $id]
switch $class {
	int {...}
	real {...}
	string {...}
	message {..}
}

The result is the class of the object, which can be int,real,string or message.

KEYWORDS


Copyright © 2000 Gerhard Hintermayer.