Search Results for

    Show / Hide Table of Contents

    Class ExportManager

    Provides methods to export tables and text to various formats.

    Acts as a factory for format-specific exporters.

    The export format is automatically determined by the type of ExportOptions provided.

    ------------------------------------------------

    Usage:

    // Export a single table with default options (uses format parameter)
    ExportManager.ExportTable(table, "output.csv", ExportFormat.Csv);
    

    // Export multiple tables with custom options (format inferred from options type) var csvOptions = new CsvExportOptions { CsvDelimiter = ";" }; ExportManager.ExportTables(tables, "output.csv", csvOptions);

    // Export with custom HTML options var htmlOptions = new HtmlExportOptions { HtmlResponsive = true }; ExportManager.ExportTable(table, "output.html", htmlOptions);

    // Export entire extraction result var config = new ExportConfiguration { ExportTables = true, ExportText = true, TableOptions = new JsonExportOptions(), SeparateFilePerTable = true }; ExportManager.ExportResult(result, "output", config);

    ------------------------------------------------

    Inheritance
    System.Object
    ExportManager
    Namespace: IronPdf.Extractions
    Assembly: IronPdf.dll
    Syntax
    public static class ExportManager : Object
    Remarks

    Important Considerations:

    Format Selection: The export format is automatically determined by the type of ExportOptions provided (CsvExportOptions → CSV, HtmlExportOptions → HTML, etc.).

    Default Exporter: If ExportOptionsBase is passed without a specific type, TxtExporter is used by default.

    Type Safety: Using format-specific options (CsvExportOptions, HtmlExportOptions, etc.) ensures you only see relevant configuration options.

    Directory Creation: ExportManager automatically creates output directories if they don't exist.

    Related Documentation:

    How-To Guide: Exporting Extracted Data

    API Reference: Full API Documentation

    Methods

    ExportResult(PdfExtractionResult, String, ExportConfiguration)

    Exports an entire extraction result to a directory

    Can export both tables and text content with customizable file organization.

    Declaration
    public static void ExportResult(PdfExtractionResult result, string outputDirectory, ExportConfiguration config)
    Parameters
    Type Name Description
    PdfExtractionResult result

    Extraction result to export

    System.String outputDirectory

    Directory to output files (created if it doesn't exist)

    ExportConfiguration config

    Export configuration specifying what to export and how

    Remarks

    The export format is determined by the type of options in config.TableOptions.

    If config.TableOptions is ExportOptionsBase without a specific type, TxtExporter is used by default.

    Examples
    var config = new ExportConfiguration
    {
    ExportTables = true,
    ExportText = true,
    TableOptions = new CsvExportOptions { CsvDelimiter = ";" },
    SeparateFilePerTable = true,
    FileNamePattern = "table_{page}_{index}"
    };
    ExportManager.ExportResult(result, "output_directory", config);
    Exceptions
    Type Condition
    System.ArgumentNullException

    Thrown when result is null

    System.ArgumentException

    Thrown when outputDirectory is null or empty

    System.Security.SecurityException

    Thrown when the path is invalid or potentially malicious

    ExportTable(TableObject, String, ExportFormat)

    Exports a single table to a file with default options for the specified format

    Declaration
    public static void ExportTable(TableObject table, string outputPath, ExportFormat format)
    Parameters
    Type Name Description
    TableObject table

    Table to export

    System.String outputPath

    Path to output file

    ExportFormat format

    Export format (creates default options for this format)

    Examples
    ExportManager.ExportTable(table, "output.csv", ExportFormat.Csv);
    Exceptions
    Type Condition
    System.Security.SecurityException

    Thrown when the path is invalid or potentially malicious

    ExportTable(TableObject, String, ExportOptionsBase)

    Exports a single table to a file with custom options

    The export format is automatically determined by the type of options provided.

    Declaration
    public static void ExportTable(TableObject table, string outputPath, ExportOptionsBase options)
    Parameters
    Type Name Description
    TableObject table

    Table to export

    System.String outputPath

    Path to output file

    ExportOptionsBase options

    Export options (type determines format: CsvExportOptions → CSV, HtmlExportOptions → HTML, etc.)

    Remarks

    If ExportOptionsBase is passed without a specific type, TxtExporter is used by default.

    Examples
    // CSV export with custom delimiter
    var csvOptions = new CsvExportOptions { CsvDelimiter = ";" };
    ExportManager.ExportTable(table, "output.csv", csvOptions);
    
    // HTML export with custom styling
    var htmlOptions = new HtmlExportOptions { HtmlTableClass = "my-table" };
    ExportManager.ExportTable(table, "output.html", htmlOptions);
    Exceptions
    Type Condition
    System.ArgumentNullException

    Thrown when table is null

    System.ArgumentException

    Thrown when outputPath is null or empty

    System.Security.SecurityException

    Thrown when the path is invalid or potentially malicious

    ExportTables(List<TableObject>, String, ExportFormat)

    Exports multiple tables to a single file with default options for the specified format

    Declaration
    public static void ExportTables(List<TableObject> tables, string outputPath, ExportFormat format)
    Parameters
    Type Name Description
    System.Collections.Generic.List<TableObject> tables

    Tables to export

    System.String outputPath

    Path to output file

    ExportFormat format

    Export format (creates default options for this format)

    Examples
    ExportManager.ExportTables(tables, "all_tables.json", ExportFormat.Json);
    Exceptions
    Type Condition
    System.Security.SecurityException

    Thrown when the path is invalid or potentially malicious

    ExportTables(List<TableObject>, String, ExportOptionsBase)

    Exports multiple tables to a file with custom options

    The export format is automatically determined by the type of options provided.

    Declaration
    public static void ExportTables(List<TableObject> tables, string outputPath, ExportOptionsBase options)
    Parameters
    Type Name Description
    System.Collections.Generic.List<TableObject> tables

    Tables to export

    System.String outputPath

    Path to output file

    ExportOptionsBase options

    Export options (type determines format: CsvExportOptions → CSV, HtmlExportOptions → HTML, etc.)

    Remarks

    If ExportOptionsBase is passed without a specific type, TxtExporter is used by default.

    Examples
    // Export multiple tables to CSV with semicolon delimiter
    var csvOptions = new CsvExportOptions { CsvDelimiter = ";" };
    ExportManager.ExportTables(tables, "all_tables.csv", csvOptions);
    Exceptions
    Type Condition
    System.ArgumentNullException

    Thrown when tables is null

    System.ArgumentException

    Thrown when outputPath is null or empty

    System.Security.SecurityException

    Thrown when the path is invalid or potentially malicious

    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronPDF_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronPDF