build_report_to_images method
Contents
[
Hide
]build_report_to_images(input_file_name, save_options, data, data_source_names)
Populates the template document with data from multiple sources. Renders the output to images.
def build_report_to_images(self, input_file_name: str, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str]):
...
| Parameter | Type | Description |
|---|---|---|
| input_file_name | str | The input file name. |
| save_options | ImageSaveOptions | The output’s save options. |
| data | List[object] | An array of data source objects. |
| data_source_names | List[str] | An array of names to reference the data source objects within the template. |
build_report_to_images(input_file_name, save_options, data, data_source_names, report_builder_options)
Populates the template document with data from multiple sources. Renders the output to images.
def build_report_to_images(self, input_file_name: str, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str], report_builder_options: aspose.words.lowcode.ReportBuilderOptions):
...
| Parameter | Type | Description |
|---|---|---|
| input_file_name | str | The input file name. |
| save_options | ImageSaveOptions | The output’s save options. |
| data | List[object] | An array of data source objects. |
| data_source_names | List[str] | An array of names to reference the data source objects within the template. |
| report_builder_options | ReportBuilderOptions | Additional report build options. |
build_report_to_images(input_stream, save_options, data, data_source_names)
Populates the template document with data from multiple sources. Renders the output to images.
def build_report_to_images(self, input_stream: io.BytesIO, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str]):
...
| Parameter | Type | Description |
|---|---|---|
| input_stream | io.BytesIO | The input file stream. |
| save_options | ImageSaveOptions | The output’s save options. |
| data | List[object] | An array of data source objects. |
| data_source_names | List[str] | An array of names to reference the data source objects within the template. |
build_report_to_images(input_stream, save_options, data, data_source_names, report_builder_options)
Populates the template document with data from multiple sources. Renders the output to images.
def build_report_to_images(self, input_stream: io.BytesIO, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str], report_builder_options: aspose.words.lowcode.ReportBuilderOptions):
...
| Parameter | Type | Description |
|---|---|---|
| input_stream | io.BytesIO | The input file stream. |
| save_options | ImageSaveOptions | The output’s save options. |
| data | List[object] | An array of data source objects. |
| data_source_names | List[str] | An array of names to reference the data source objects within the template. |
| report_builder_options | ReportBuilderOptions | Additional report build options. |
See Also
- module aspose.words.lowcode
- class ReportBuilder