ReportBuilder class

ReportBuilder class

Provides methods intended to fill template with data using LINQ Reporting Engine.

Methods

NameDescription
build_report(input_file_name, output_file_name, data)Populates the template document with data from the specified source, generating a completed report.
build_report(input_file_name, output_file_name, data, report_builder_options)Populates the template document with data from the specified source, generating a completed report with additional options.
build_report(input_file_name, output_file_name, save_format, data)Populates the template document with data from the specified source, generating a completed report with specified output format.
build_report(input_file_name, output_file_name, save_format, data, report_builder_options)Populates the template document with data from the specified source, generating a completed report with specified output format and additional options.
build_report(input_file_name, output_file_name, save_options, data, report_builder_options)Populates the template document with data from the specified source, generating a completed report with specified output format and additional options.
build_report(input_stream, output_stream, save_format, data)Populates the template document with data from the specified source, generating a completed report from input and output streams.
build_report(input_stream, output_stream, save_format, data, report_builder_options)Populates the template document with data from the specified source, generating a completed report with specified output format and additional options, from input and output streams.
build_report(input_stream, output_stream, save_options, data, report_builder_options)Populates the template document with data from the specified source, generating a completed report with specified output format and additional options, from input and output streams.
build_report(input_file_name, output_file_name, data, data_source_name)Populates the template document with data from the specified source, generating a completed report with a named data source reference.
build_report(input_file_name, output_file_name, data, data_source_name, report_builder_options)Populates the template document with data from the specified source, generating a completed report with a named data source reference and additional options.
build_report(input_file_name, output_file_name, save_format, data, data_source_name)Populates the template document with data from the specified source, generating a completed report with specified output format and a named data source reference.
build_report(input_file_name, output_file_name, save_format, data, data_source_name, report_builder_options)Populates the template document with data from the specified source, generating a completed report with specified output format, a named data source reference, and additional options.
build_report(input_file_name, output_file_name, save_options, data, data_source_name, report_builder_options)Populates the template document with data from the specified source, generating a completed report with specified output format, a named data source reference, and additional options.
build_report(input_stream, output_stream, save_format, data, data_source_name)Populates the template document with data from the specified source, generating a completed report with a named data source reference.
build_report(input_stream, output_stream, save_format, data, data_source_name, report_builder_options)Populates the template document with data from the specified source, generating a completed report with a named data source reference and additional options.
build_report(input_stream, output_stream, save_options, data, data_source_name, report_builder_options)Populates the template document with data from the specified source, generating a completed report with a named data source reference and additional options.
build_report(input_file_name, output_file_name, data, data_source_names)Populates the template document with data from multiple sources, generating a completed report from the specified input and output file names. This overload automatically determines the save format based on the output file extension.
build_report(input_file_name, output_file_name, data, data_source_names, report_builder_options)Populates the template document with data from multiple sources, generating a completed report with additional options. This overload automatically determines the save format based on the output file extension.
build_report(input_file_name, output_file_name, save_format, data, data_source_names)Populates the template document with data from multiple sources, generating a completed report with a specified output format. This overload automatically determines the save format based on the output file extension.
build_report(input_file_name, output_file_name, save_format, data, data_source_names, report_builder_options)Populates the template document with data from multiple sources, generating a completed report with a specified output format and additional options.
build_report(input_file_name, output_file_name, save_options, data, data_source_names, report_builder_options)Populates the template document with data from multiple sources, generating a completed report with a specified output format and additional options.
build_report(input_stream, output_stream, save_format, data, data_source_names)Populates the template document with data from multiple sources, generating a completed report from the specified input and output file streams.
build_report(input_stream, output_stream, save_format, data, data_source_names, report_builder_options)Populates the template document with data from multiple sources, generating a completed report with specified output format and additional options from the specified input and output file streams.
build_report(input_stream, output_stream, save_options, data, data_source_names, report_builder_options)Populates the template document with data from multiple sources, generating a completed report with specified output format and additional options from the specified input and output file streams.

See Also