IMetabaseObjectDescriptor.ClassId

Syntax

ClassId: Integer;

Description

The ClassId property returns an identifier of the repository object class.

Comments

Use the MetabaseObjectClass enumeration to check the value of this property.

Example

Sub Main;

Var

MB:IMetabase;

Desc:IMetabaseObjectDescriptor;

S:Integer;

Begin

MB:=MetabaseClass.Active;

Desc:=Mb.ItemById("obj111");

S:=Desc.ClassId;

End Sub Main;

 

After executing this example the identifier of the class of objects of the metadata base is contained in the "S" variable.

See also:

IMetabaseObjectDescriptor