Returns whether an object is instantiated from a class or subclass identified by a given class name or GUID string (true) or not (false). Class descriptions are fetched from the server and added to the metadata cache as needed.


Namespace: FileNet.Api.Meta
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Function ObjectIsOfClass( _ 
   ByVal eo As IEngineObject,  _ 
   ByVal classIdent As String _ 
) As Boolean
C#
bool ObjectIsOfClass(
   IEngineObject eo,
   string classIdent
)
C++
bool ObjectIsOfClass(
   IEngineObject eo,
   String classIdent
) abstract 
J#
bool ObjectIsOfClass(
   IEngineObject eo,
   string classIdent
)
JScript
function ObjectIsOfClass(
   eo : IEngineObject,
   classIdent : String
) : bool

Parameters

eo
An EngineObject object.
classIdent
A String specifying the name or GUID string of the class.

Return Value

True if the object specified by eo is instantiated from the class specified by classIdent; otherwise, returns false.

See Also