Returns whether an object is instantiated from a class or subclass identified by a given class name or GUID string (
) or not (
). 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
object.EngineObject
- classIdent
- A
specifying the name or GUID string of the class.String
Return Value
if the object specified by
is instantiated from the class specified by
; otherwise, returns
.