Returns whether the class described by this
object is a subclass of the specified class (
) or not (
). Note that this method will not work for search-related
objects; that is,
objects that are returned from a
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
that specifies the symbolic name orString
constant of the parent class to check this subclass against.ClassNames
Return Value
if the class specified by ClassName is a subclass of the class;
if it is not.