[]
Saves the datas from different workbooks to the specified pdf file stream.
public void SavePDF(Stream stream, IEnumerable<Workbook> workbooks, PdfSaveOptions options = null)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The specified pdf file. |
| IEnumerable<Workbook> | workbooks | The workbook collection. |
| PdfSaveOptions | options | Options for saving pdf file. |
Saves the datas from different workbooks to the specified pdf file stream.
public void SavePDF(Stream stream, params Workbook[] workbooks)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The specified pdf file. |
| Workbook[] | workbooks | The workbook collection. |
Saves the datas from different workbooks to the specified pdf file.
public void SavePDF(string fileName, IEnumerable<Workbook> workbooks, PdfSaveOptions options = null)
| Type | Name | Description |
|---|---|---|
| string | fileName | The specified pdf file. |
| IEnumerable<Workbook> | workbooks | The workbook collection. |
| PdfSaveOptions | options | Options for saving pdf file. |
Saves the datas from different workbooks to the specified pdf file.
public void SavePDF(string fileName, params Workbook[] workbooks)
| Type | Name | Description |
|---|---|---|
| string | fileName | The specified pdf file. |
| Workbook[] | workbooks | The workbook collection. |
Saves the page datas to the specified pdf file.
public void SavePDF(string fileName, IList<PageInfo> pages, PdfSaveOptions options = null)
| Type | Name | Description |
|---|---|---|
| string | fileName | The specified pdf file. |
| IList<PageInfo> | pages | The page information collection. |
| PdfSaveOptions | options | Options for saving pdf file. |
Saves the page datas to the specified pdf file stream.
public void SavePDF(Stream stream, IList<PageInfo> pages, PdfSaveOptions options = null)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The specified pdf file. |
| IList<PageInfo> | pages | The page information collection. |
| PdfSaveOptions | options | Options for saving pdf file. |