IGxDocument.Title

Syntax

Title: String;

Description

The Title property returns name of the object that supports the print.

Example

Sub Main;

Var

MB: IMetabase;

Docum: IGxDocument;

s: String;

Begin

MB:=MetabaseClass.Active;

Docum:=MB.ItemById("Report").Bind As IGxDocument;

s:=Docum.Title;

End Sub Main;

After executing the example the "s" variable contains the object name. Report is the identifier of the repository object.

See also:

IGxDocument