Aspose::Pdf::Document::SendTo method

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)
ParameterTypeDescription
deviceconst System::SharedPtr<Devices::DocumentDevice>&Document device which is used to process the document.
outputconst System::SharedPtr<System::IO::Stream>&Output stream contains the results of the document processing with given device.

See Also

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)
ParameterTypeDescription
deviceconst System::SharedPtr<Devices::DocumentDevice>&Document device which is used to process the document.
outputFileNameconst System::String&Output file name with the results of processing.

See Also

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)
ParameterTypeDescription
deviceconst System::SharedPtr<Devices::DocumentDevice>&Document device which is used to process the document.
fromPageint32_tThe first page for processing.
toPageint32_tThe last page for processing.
outputconst System::SharedPtr<System::IO::Stream>&Output stream contains the results of the document pages processing with given device.

See Also

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)
ParameterTypeDescription
deviceconst System::SharedPtr<Devices::DocumentDevice>&Document device which is used to process the document.
fromPageint32_tThe first page for processing.
toPageint32_tThe last page for processing.
outputFileNameconst System::String&Output file name with the results of processing.

See Also