PDFPrintManagerAddStandardPrintOption Method |
Used to add standard print options
(http://msdn.microsoft.com/en-us/library/windows/apps/windows.graphics.printing.standardprinttaskoptions.ASPx)
that appear in the print window.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void AddStandardPrintOption(
string option
)
Public Sub AddStandardPrintOption (
option As String
)
public:
virtual void AddStandardPrintOption(
[InAttribute] String^ option
) sealed
function AddStandardPrintOption(option);
Parameters
- option
- Type: SystemString
The name of the standard print option.
Examples
myPrint.AddStandardPrintOption(Windows.Graphics.Printing.StandardPrintTaskOptions.Copies);
See Also