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)

ToggleSyntax

Visual Basic (Declaration)
Function DescribedIsOfClass ( _
	className As String _
) As Nullable(Of Boolean)
C#
Nullable<bool> DescribedIsOfClass(
	string className
)
Visual C++
Nullable<bool> DescribedIsOfClass(
	String^ className
)
JavaScript
function describedIsOfClass(className);

Parameters

className
Type: System..::.String
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.

ToggleSee Also