Returns whether the class described by this ClassDescription object is a subclass of the specified class (true) or not (false). Note that this method will not work for search-related ClassDescription objects; that is, ClassDescription objects that are returned from a SearchScope.fetchSearchableClassDescriptions method call.


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

Syntax

Visual Basic (Declaration)
Function DescribedIsOfClass( _ 
   ByVal className As String _ 
) As Nullable(Of Boolean)
C#
Nullable<bool> DescribedIsOfClass(
   string className
)
C++
Nullable<bool> DescribedIsOfClass(
   String className
) abstract 
J#
Nullable<bool> DescribedIsOfClass(
   string className
)
JScript
function DescribedIsOfClass(
   className : String
) : Nullable<bool>

Parameters

className
A String that specifies the symbolic name or ClassNames constant of the parent class to check this subclass against.

Return Value

true if the class specified by ClassName is a subclass of the class; false if it is not.

See Also