PSPDFPrintConfiguration

Objective-C


@interface PSPDFPrintConfiguration
    : PSPDFBaseConfiguration <PSPDFPrintConfigurationBuilder *>

Swift

class PrintConfiguration : BaseConfiguration<PrintConfigurationBuilder>

Common settings that define how printing should be handled.

  • Defines the printer mode. See PSPDFPrintMode for available options. Defaults to PSPDFPrintModeInteractive.

    Declaration

    Objective-C

    @property (nonatomic, readonly) PSPDFPrintMode printMode;

    Swift

    var printMode: PrintConfiguration.Mode { get }
  • Defines the default printer that should be pre-selected. Ignored when printMode is set to PSPDFPrintModeInteractive.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) UIPrinter *defaultPrinter;

    Swift

    var defaultPrinter: UIPrinter? { get }