DBPAPERImportFormatTag

Objective-C

enum DBPAPERImportFormatTag : NSInteger {}

Swift

@frozen enum DBPAPERImportFormatTag : Int, @unchecked Sendable

The DBPAPERImportFormatTag enum type represents the possible tag states with which the DBPAPERImportFormat union can exist.

  • The provided data is interpreted as standard HTML.

    Declaration

    Objective-C

    DBPAPERImportFormatHtml

    Swift

    case html = 0
  • The provided data is interpreted as markdown. The first line of the provided document will be used as the doc title.

    Declaration

    Objective-C

    DBPAPERImportFormatMarkdown

    Swift

    case markdown = 1
  • The provided data is interpreted as plain text. The first line of the provided document will be used as the doc title.

    Declaration

    Objective-C

    DBPAPERImportFormatPlainText

    Swift

    case plainText = 2
  • (no description).

    Declaration

    Objective-C

    DBPAPERImportFormatOther

    Swift

    case other = 3