Aspose::Pdf::Facades::PdfFileEditor::Insert method
Contents
[
Hide
]PdfFileEditor::Insert(const System::SharedPtr<System::IO::Stream>&, int32_t, const System::SharedPtr<System::IO::Stream>&, const System::ArrayPtr<int32_t>&, const System::SharedPtr<System::IO::Stream>&) method
Inserts pages from an other file into the input Pdf file.
bool Aspose::Pdf::Facades::PdfFileEditor::Insert(const System::SharedPtr<System::IO::Stream> &inputStream, int32_t insertLocation, const System::SharedPtr<System::IO::Stream> &portStream, const System::ArrayPtr<int32_t> &pageNumber, const System::SharedPtr<System::IO::Stream> &outputStream)
| Parameter | Type | Description |
|---|---|---|
| inputStream | const System::SharedPtr<System::IO::Stream>& | Input Stream of Pdf file. |
| insertLocation | int32_t | Insert position in input file. |
| portStream | const System::SharedPtr<System::IO::Stream>& | Stream of Pdf file for pages. |
| pageNumber | const System::ArrayPtr<int32_t>& | The page number of the ported in portFile. |
| outputStream | const System::SharedPtr<System::IO::Stream>& | Output Stream. |
ReturnValue
True if operation was succeeded.
See Also
- Typedef SharedPtr
- Class Stream
- Typedef ArrayPtr
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Insert(const System::SharedPtr<System::IO::Stream>&, int32_t, const System::SharedPtr<System::IO::Stream>&, const System::ArrayPtr<int32_t>&, const System::SharedPtr<System::Web::HttpResponse>&) method
Inserts document into other document and stores result into response object.
bool Aspose::Pdf::Facades::PdfFileEditor::Insert(const System::SharedPtr<System::IO::Stream> &inputStream, int32_t insertLocation, const System::SharedPtr<System::IO::Stream> &portStream, const System::ArrayPtr<int32_t> &pageNumber, const System::SharedPtr<System::Web::HttpResponse> &response)
| Parameter | Type | Description |
|---|---|---|
| inputStream | const System::SharedPtr<System::IO::Stream>& | Stream with source document |
| insertLocation | int32_t | Location where other document will be inserted. |
| portStream | const System::SharedPtr<System::IO::Stream>& | Document to be inserted. |
| pageNumber | const System::ArrayPtr<int32_t>& | Array of page numbers in second document which will be inserted. |
| response | const System::SharedPtr<System::Web::HttpResponse>& | Response object where result will be stored. |
ReturnValue
True if operation was succeeded.
See Also
- Typedef SharedPtr
- Class Stream
- Typedef ArrayPtr
- Class HttpResponse
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Insert(const System::SharedPtr<System::IO::Stream>&, int32_t, const System::SharedPtr<System::IO::Stream>&, int32_t, int32_t, const System::SharedPtr<System::IO::Stream>&) method
Inserts pages from an other file into the input Pdf file.
bool Aspose::Pdf::Facades::PdfFileEditor::Insert(const System::SharedPtr<System::IO::Stream> &inputStream, int32_t insertLocation, const System::SharedPtr<System::IO::Stream> &portStream, int32_t startPage, int32_t endPage, const System::SharedPtr<System::IO::Stream> &outputStream)
| Parameter | Type | Description |
|---|---|---|
| inputStream | const System::SharedPtr<System::IO::Stream>& | Input Stream of Pdf file. |
| insertLocation | int32_t | Insert position in input file. |
| portStream | const System::SharedPtr<System::IO::Stream>& | Stream of Pdf file for pages. |
| startPage | int32_t | From which page to start. |
| endPage | int32_t | To which page to end. |
| outputStream | const System::SharedPtr<System::IO::Stream>& | Output Stream. |
ReturnValue
True for success, or false.
See Also
- Typedef SharedPtr
- Class Stream
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Insert(const System::String&, int32_t, const System::String&, const System::ArrayPtr<int32_t>&, const System::SharedPtr<System::Web::HttpResponse>&) method
Inserts contents of file into source file and stores result into HttpResponse object.
bool Aspose::Pdf::Facades::PdfFileEditor::Insert(const System::String &inputFile, int32_t insertLocation, const System::String &portFile, const System::ArrayPtr<int32_t> &pageNumber, const System::SharedPtr<System::Web::HttpResponse> &response)
| Parameter | Type | Description |
|---|---|---|
| inputFile | const System::String& | Source file name. |
| insertLocation | int32_t | Page number where second file will be inserted. |
| portFile | const System::String& | Path to file which will be inserted. |
| pageNumber | const System::ArrayPtr<int32_t>& | Array of page numbers in source file wihich will be inserted. |
| response | const System::SharedPtr<System::Web::HttpResponse>& | Response object where result will be stored. |
ReturnValue
true of inserting was successful.
See Also
- Class String
- Typedef ArrayPtr
- Typedef SharedPtr
- Class HttpResponse
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Insert(const System::String&, int32_t, const System::String&, const System::ArrayPtr<int32_t>&, const System::String&) method
Inserts pages from an other file into the input Pdf file.
bool Aspose::Pdf::Facades::PdfFileEditor::Insert(const System::String &inputFile, int32_t insertLocation, const System::String &portFile, const System::ArrayPtr<int32_t> &pageNumber, const System::String &outputFile)
| Parameter | Type | Description |
|---|---|---|
| inputFile | const System::String& | Input Pdf file. |
| insertLocation | int32_t | Insert position in input file. |
| portFile | const System::String& | Pages from the Pdf file. |
| pageNumber | const System::ArrayPtr<int32_t>& | The page number of the ported in portFile. |
| outputFile | const System::String& | Output Pdf file. |
ReturnValue
True for success, or false.
See Also
- Class String
- Typedef ArrayPtr
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Insert(const System::String&, int32_t, const System::String&, int32_t, int32_t, const System::String&) method
Inserts pages from an other file into the Pdf file at a position.
bool Aspose::Pdf::Facades::PdfFileEditor::Insert(const System::String &inputFile, int32_t insertLocation, const System::String &portFile, int32_t startPage, int32_t endPage, const System::String &outputFile)
| Parameter | Type | Description |
|---|---|---|
| inputFile | const System::String& | Input Pdf file. |
| insertLocation | int32_t | Position in input file. |
| portFile | const System::String& | The porting Pdf file. |
| startPage | int32_t | Start position in portFile. |
| endPage | int32_t | End position in portFile. |
| outputFile | const System::String& | Output Pdf file. |
ReturnValue
True for success, or false.
See Also
- Class String
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++