Aspose::Pdf::Document::SendTo method
Contents
[
Hide
]Document::SendTo(const System::SharedPtr<Devices::DocumentDevice>&, const System::SharedPtr<System::IO::Stream>&) method
Sends the whole document to the document device for processing.
void Aspose::Pdf::Document::SendTo(const System::SharedPtr<Devices::DocumentDevice> &device, const System::SharedPtr<System::IO::Stream> &output)
| Parameter | Type | Description |
|---|---|---|
| device | const System::SharedPtr<Devices::DocumentDevice>& | Document device which is used to process the document. |
| output | const System::SharedPtr<System::IO::Stream>& | Output stream contains the results of the document processing with given device. |
See Also
- Typedef SharedPtr
- Class DocumentDevice
- Class Stream
- Class Document
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
Document::SendTo(const System::SharedPtr<Devices::DocumentDevice>&, const System::String&) method
Sends the whole document to the document device for processing.
void Aspose::Pdf::Document::SendTo(const System::SharedPtr<Devices::DocumentDevice> &device, const System::String &outputFileName)
| Parameter | Type | Description |
|---|---|---|
| device | const System::SharedPtr<Devices::DocumentDevice>& | Document device which is used to process the document. |
| outputFileName | const System::String& | Output file name with the results of processing. |
See Also
- Typedef SharedPtr
- Class DocumentDevice
- Class String
- Class Document
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
Document::SendTo(const System::SharedPtr<Devices::DocumentDevice>&, int32_t, int32_t, const System::SharedPtr<System::IO::Stream>&) method
Sends the certain pages of the document to the document device for processing.
void Aspose::Pdf::Document::SendTo(const System::SharedPtr<Devices::DocumentDevice> &device, int32_t fromPage, int32_t toPage, const System::SharedPtr<System::IO::Stream> &output)
| Parameter | Type | Description |
|---|---|---|
| device | const System::SharedPtr<Devices::DocumentDevice>& | Document device which is used to process the document. |
| fromPage | int32_t | The first page for processing. |
| toPage | int32_t | The last page for processing. |
| output | const System::SharedPtr<System::IO::Stream>& | Output stream contains the results of the document pages processing with given device. |
See Also
- Typedef SharedPtr
- Class DocumentDevice
- Class Stream
- Class Document
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
Document::SendTo(const System::SharedPtr<Devices::DocumentDevice>&, int32_t, int32_t, const System::String&) method
Sends the whole document to the document device for processing.
void Aspose::Pdf::Document::SendTo(const System::SharedPtr<Devices::DocumentDevice> &device, int32_t fromPage, int32_t toPage, const System::String &outputFileName)
| Parameter | Type | Description |
|---|---|---|
| device | const System::SharedPtr<Devices::DocumentDevice>& | Document device which is used to process the document. |
| fromPage | int32_t | The first page for processing. |
| toPage | int32_t | The last page for processing. |
| outputFileName | const System::String& | Output file name with the results of processing. |
See Also
- Typedef SharedPtr
- Class DocumentDevice
- Class String
- Class Document
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++