IUiPrxExportEventArgs.Format

Syntax

Format: IExportFormat;

Description

The Format property returns information on the format, into which the report is exported.

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 on format, into which the regular report has been exported.

See also:

IUiPrxExportEventArgs