Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Report Namespace / FileFormatEnum Enumeration

In This Topic
    FileFormatEnum Enumeration
    In This Topic
    Specifies the format of the export file.
    Syntax
    'Declaration
     
    Public Enum FileFormatEnum 
       Inherits System.Enum
    public enum FileFormatEnum : System.Enum 
    Members
    MemberDescription
    ExcelMicrosoft Excel files. This setting creates a BIFF-8 Excel file that can be opened with Microsoft Excel 97 or later.
    HTMLPlain HTML format. This setting creates a single HTML file that can be viewed in any web browser.
    HTMLDrillDownDrill-down HTML format. This setting creates a single HTML file with collapsible headings. When viewed in a DHTML-capable browser, clicking group headers causes them to collapse and expand to show the detail.
    HTMLPagedPaged HTML format. This setting creates one HTML file for each page in the report, with links to navigate between pages.
    HTMLTableBasedTable-based HTML format. This setting creates a single HTML file that can be viewed in any web browser. Unlike plain HTML format, uses tables rather than absolute positioning to arrange objects.
    MetafileCompressed metafile. This setting creates a zip file containing one metafile (emf) per page. The default file extensions for this format are "zip" or "emz".
    OpenXmlOpenXml file. This setting creates an OpenXml Excel file that can be opened with Microsoft Excel 2007 or later.
    PDF

    Adobe PDF format. This setting creates a PDF file that can be viewed using Adobe Acrobat software.

    The PDF file includes an outline tree that is generated automatically based on the report structure.

    Each node in the tree corresponds to a group header section in the report. Invisible group header sections do not generate outline entries in the PDF document.

    PDFAAdobe PDF format, PDF/A (level 2B) compatible.
    PDFEmbedFontsAdobe PDF format with embedded fonts. This setting creates a PDF file that can be viewed using Adobe Acrobat software.
    PDFPrintUtilDeprecated. Use PDF, PDFEmbedFonts, or PDFProcted instead.
    PDFProtectedProtected PDF format. This setting creates a PDF file with a random password. The file can be opened and printed by anyone, but cannot be modified.
    RTFRTF format. This setting creates an RTF file that can be opened in Microsoft Word, WordPad, or any other RTF-capable text editor.
    RTFLabelsRTF field-based format. This setting creates RTF files with absolutely-positioned fields. This format renders reports more accurately than the plain RTF format, and is recommended for creating label-style reports. However, the files created with this setting are harder to edit than the plan RTF format, and can only be previewed or printed correctly using Microsoft Word (this format doesn't work with WordPad).
    TextPlain text. This setting creates a plain ASCII file.
    TextSinglePagePlain text. This setting creates a plain ASCII file as a single page.
    TIFFTIFF format. This setting creates multi-page TIFF files.
    Remarks
    Use the members of this enumeration to set parameter of the C1Report.RenderToFile method in the C1Report class.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.C1Report.FileFormatEnum

    See Also