IExportFormat.Description

Syntax

Description: String;

Description

The Description property returns description of the format, to which export is executed.

Example

Sub UiReport1OnAfterExportReport(Sender: Object; Args: IUiPrxExportEventArgs);

Var

Format: IExportFormat;

Begin

Format := Args.Format;

Debug.WriteLine(Format.Description);

Debug.WriteLine(Format.FileExtension);

Debug.WriteLine(Format.FilterString);

Debug.WriteLine(Format.MimeType);

Debug.WriteLine(Format.Tag);

End Sub UiReport1OnAfterExportReport;

After executing the event the development environment console displays information about the format, to which express report is exported.

See also:

IExportFormat