iosGetObjectClass - get class of object
iosGetObjectClass id
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.
Copyright © 2000 Gerhard Hintermayer.