Document.SendTo

SendTo(DocumentDevice, Stream)

Sends the whole document to the document device for processing.

public void SendTo(DocumentDevice device, Stream output)
ParameterTypeDescription
deviceDocumentDeviceDocument device which is used to process the document.
outputStreamOutput stream contains the results of the document processing with given device.

See Also


SendTo(DocumentDevice, int, int, Stream)

Sends the certain pages of the document to the document device for processing.

public void SendTo(DocumentDevice device, int fromPage, int toPage, Stream output)
ParameterTypeDescription
deviceDocumentDeviceDocument device which is used to process the document.
fromPageInt32The first page for processing.
toPageInt32The last page for processing.
outputStreamOutput stream contains the results of the document pages processing with given device.

See Also


SendTo(DocumentDevice, string)

Sends the whole document to the document device for processing.

public void SendTo(DocumentDevice device, string outputFileName)
ParameterTypeDescription
deviceDocumentDeviceDocument device which is used to process the document.
outputFileNameStringOutput file name with the results of processing.

See Also


SendTo(DocumentDevice, int, int, string)

Sends the whole document to the document device for processing.

public void SendTo(DocumentDevice device, int fromPage, int toPage, string outputFileName)
ParameterTypeDescription
deviceDocumentDeviceDocument device which is used to process the document.
fromPageInt32The first page for processing.
toPageInt32The last page for processing.
outputFileNameStringOutput file name with the results of processing.

See Also