IPdfDeviceFactory.Create

Create(PdfRenderingOptions, ICreateStreamProvider)

Creates a PDF device with the specified rendering options and stream provider.

public IDevice Create(PdfRenderingOptions options, ICreateStreamProvider streamProvider)
ParameterTypeDescription
optionsPdfRenderingOptionsThe rendering options for the PDF device. See PdfRenderingOptions.
streamProviderICreateStreamProviderThe stream provider used to create the PDF output stream. See ICreateStreamProvider.

Return Value

The created PDF device.

See Also


Create(PdfRenderingOptions, string)

Creates a PDF device with the specified rendering options and file path.

public IDevice Create(PdfRenderingOptions options, string file)
ParameterTypeDescription
optionsPdfRenderingOptionsThe rendering options for the PDF device. See PdfRenderingOptions.
fileStringThe file path for the PDF output.

Return Value

The created PDF device.

See Also


Create(PdfRenderingOptions, Stream)

Creates a PDF device with the specified rendering options and stream.

public IDevice Create(PdfRenderingOptions options, Stream stream)
ParameterTypeDescription
optionsPdfRenderingOptionsThe rendering options for the PDF device. See PdfRenderingOptions.
streamStreamThe stream for the PDF output.

Return Value

The created PDF device.

See Also