Arbortext IsoView > Programmer's Reference > Object Functions > GetObjectFlags
  
GetObjectFlags
This method is used to determine if an object has animations or hotspots. It is also used to determine if an object is 3D.
Introduced with Arbortext IsoView 7.1.
Syntax
GetObjectFlagsobjID
Parameters:
objID
Defines the ID of the object as BSTR
Return Values:
This method returns the values below in a bit-mapped array:
0x0001
The object has hotspots.
0x0002
The object is 3D.
0x0004
The object has animations of any type.
* 
To determine if a object contains a specific type of animation, use the HasAnimations method. (See HasAnimations.)
flags = GetObjectFlags( 'id(obj_1)' );