PrintWorkflowPdlConverter.ConvertPdlAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ConvertPdlAsync(WorkflowPrintTicket, IInputStream, IOutputStream) |
Converts a print document from one page description language (PDL) format to another PDL format. |
ConvertPdlAsync(WorkflowPrintTicket, IInputStream, IOutputStream, PdlConversionHostBasedProcessingOperations) |
Converts a print document from one page description language (PDL) format to another PDL format, with the ability to specify which conversion operations should be performed by the host. |
ConvertPdlAsync(WorkflowPrintTicket, IInputStream, IOutputStream)
Converts a print document from one page description language (PDL) format to another PDL format.
public:
virtual IAsyncAction ^ ConvertPdlAsync(WorkflowPrintTicket ^ printTicket, IInputStream ^ inputStream, IOutputStream ^ outputStream) = ConvertPdlAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ConvertPdlAsync(WorkflowPrintTicket const& printTicket, IInputStream const& inputStream, IOutputStream const& outputStream);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ConvertPdlAsync(WorkflowPrintTicket printTicket, IInputStream inputStream, IOutputStream outputStream);
function convertPdlAsync(printTicket, inputStream, outputStream)
Public Function ConvertPdlAsync (printTicket As WorkflowPrintTicket, inputStream As IInputStream, outputStream As IOutputStream) As IAsyncAction
Parameters
- printTicket
- WorkflowPrintTicket
The current XML PrintTicket document containing instructions on how the printer should set its various features for a printing task.
- inputStream
- IInputStream
The print document that needs to be converted from the original PDL format.
- outputStream
- IOutputStream
The converted print document in the translated PDL format.
Returns
An object that is used to control the asynchronous operation.
- Attributes
See also
Applies to
ConvertPdlAsync(WorkflowPrintTicket, IInputStream, IOutputStream, PdlConversionHostBasedProcessingOperations)
Converts a print document from one page description language (PDL) format to another PDL format, with the ability to specify which conversion operations should be performed by the host.
public:
virtual IAsyncAction ^ ConvertPdlAsync(WorkflowPrintTicket ^ printTicket, IInputStream ^ inputStream, IOutputStream ^ outputStream, PdlConversionHostBasedProcessingOperations hostBasedProcessingOperations) = ConvertPdlAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ConvertPdlAsync(WorkflowPrintTicket const& printTicket, IInputStream const& inputStream, IOutputStream const& outputStream, PdlConversionHostBasedProcessingOperations const& hostBasedProcessingOperations);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ConvertPdlAsync(WorkflowPrintTicket printTicket, IInputStream inputStream, IOutputStream outputStream, PdlConversionHostBasedProcessingOperations hostBasedProcessingOperations);
function convertPdlAsync(printTicket, inputStream, outputStream, hostBasedProcessingOperations)
Public Function ConvertPdlAsync (printTicket As WorkflowPrintTicket, inputStream As IInputStream, outputStream As IOutputStream, hostBasedProcessingOperations As PdlConversionHostBasedProcessingOperations) As IAsyncAction
Parameters
- printTicket
- WorkflowPrintTicket
The current XML PrintTicket document containing instructions on how the printer should set its various features for a printing task.
- inputStream
- IInputStream
The print document that needs to be converted from the original PDL format.
- outputStream
- IOutputStream
The converted print document in the translated PDL format.
- hostBasedProcessingOperations
- PdlConversionHostBasedProcessingOperations
A combination of flags from the PdlConversionHostBasedProcessingOperations enumeration, specifying the operations that should be performed by the host.
Returns
An object that is used to control the asynchronous operation.
- Attributes
Windows requirements
Device family |
Windows 11 Insider Preview (introduced in 10.0.23504.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v15.0)
|