True DBGrid for WinForms | ComponentOne
In This Topic
    Export to HTML
    In This Topic

    To set the ExportToHTML method, add the following code to the Click event of the Export button:

    C#
    Copy Code
    c1TrueDBGrid1.ExportToHTML(@"c:\temp\composers.html");
    
    Note: TrueDBGrid's export and printing features uses the C1.Win.Printing NuGet package, which provides three libraries: C1.PrintDocument, C1.Win.PrintPreview and C1.Win.RibbonPreview. Each library provides a set of previewing controls or components. The PrintDocument library provides the PrintDocument and MultiDocument components, the PrintPreview library provides the PreviewOutlineView, PreviewPane, PreviewTextSearchPanel, Thumbnail, PrintPreviewControl and PrintPreviewDialog components, and RibbonPreview  provides the RibbonPreview and RibbonPreviewDialog components. Since C1Report is now obsolete, make sure that the references for C1Report libraries is replaced by  individual library references in the C1.Win.Printing nuget.

    Clicking the Export button creates an HTML file in the temp directory indicated in the code above: