print method

print

Prints the whole presentation to the default printer.

def print(self):
    ...

print

Prints the presentation according to the specified printer settings, using the standard (no User Interface) print controller.

def print(self, printer_settings):
    ...
ParameterTypeDescription
printer_settingsaspose.pydrawing.Printing.PrinterSettingsThe .NET printer settings to use.

print

Print the whole presentation to the specified printer, using the standard (no User Interface) print controller.

def print(self, printer_name):
    ...
ParameterTypeDescription
printer_namestrThe name of the printer.

print

Prints the document according to the specified printer settings, using the standard (no User Interface) print controller and a presentation name.

def print(self, printer_settings, pres_name):
    ...
ParameterTypeDescription
printer_settingsaspose.pydrawing.Printing.PrinterSettingsThe .NET printer settings to use.
pres_namestrThe presentation name to display (for example, in a print

status dialog box or printer queue) while printing the presentation.

See Also