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)

ToggleSyntax

Visual Basic (Declaration)
Function ObjectIsOfClass ( _
	eo As IEngineObject, _
	classIdent As String _
) As Boolean
C#
bool ObjectIsOfClass(
	IEngineObject eo,
	string classIdent
)
Visual C++
bool ObjectIsOfClass(
	IEngineObject^ eo, 
	String^ classIdent
)
JavaScript
function objectIsOfClass(eo, classIdent);

Parameters

eo
Type: FileNet.Api.Core..::.IEngineObject
An EngineObject object.
classIdent
Type: System..::.String
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.

ToggleSee Also