IMetabaseObjectDescriptor.Description

Syntax

Description: String;

Description

The Description property determines description (comment) of the repository object.

Example

Sub Main;

Var

MB:IMetabase;

Desc:IMetabaseObjectDescriptor;

S:String;

Begin

MB:=MetabaseClass.Active;

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

S:=Desc.Description;

End Sub Main;

After executing this example the "S" variable contains description (comment) of the repository object with the "obj111" identifier.

See also:

IMetabaseObjectDescriptor