Creates a subclass, with the specified ID, of the class defined by this class definition. If this class is not allowed to be subclassed, an error will be returned.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Function CreateSubclass ( _
	id As Id _
) As IClassDefinition
C#
IClassDefinition CreateSubclass(
	Id id
)
Visual C++
IClassDefinition^ CreateSubclass(
	Id^ id
)
JavaScript
function createSubclass(id);

Parameters

id
Type: FileNet.Api.Util..::.Id
An Id object that specifies the ID of the new subclass.

Return Value

A ClassDefinition object that defines the new subclass.

ToggleSee Also