IExportFormat.Description

Syntax

Description: String;

Description

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

Example

The specified example is a global handler of express report calculation.

Class ExpressRep_Events: ExpressEvents
    // Implements the event that occurs after express report export
    Public Sub OnAfterExportAnalyzer(Args: IEaxAfterExportEventArgs);
    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 OnAfterExportAnalyzer;
End Class ExpressRep_Events;

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

See also:

IExportFormat