DocumentSendTo Method (DocumentDevice, Int32, Int32, Stream) |
Sends the certain pages of the document to the document device for processing.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic void SendTo(
DocumentDevice device,
int fromPage,
int toPage,
Stream output
)
Public Sub SendTo (
device As DocumentDevice,
fromPage As Integer,
toPage As Integer,
output As Stream
)
public:
void SendTo(
DocumentDevice^ device,
int fromPage,
int toPage,
Stream^ output
)
member SendTo :
device : DocumentDevice *
fromPage : int *
toPage : int *
output : Stream -> unit
Parameters
- device
- Type: Aspose.Pdf.DevicesDocumentDevice
Document device which is used to process the document.
- fromPage
- Type: SystemInt32
The first page for processing.
- toPage
- Type: SystemInt32
The last page for processing.
- output
- Type: System.IOStream
Output stream contains the results of the document pages processing with given device.
See Also