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
DBPAPERImportFormatHtmlSwift
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
DBPAPERImportFormatMarkdownSwift
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
DBPAPERImportFormatPlainTextSwift
case plainText = 2 -
(no description).
Declaration
Objective-C
DBPAPERImportFormatOtherSwift
case other = 3
View on GitHub
DBPAPERImportFormatTag Enumeration Reference