DBFILESImportFormatTag
Objective-C
enum DBFILESImportFormatTag : NSInteger {}
Swift
@frozen enum DBFILESImportFormatTag : Int, @unchecked Sendable
The DBFILESImportFormatTag
enum type represents the possible tag states
with which the DBFILESImportFormat
union can exist.
-
The provided data is interpreted as standard HTML.
Declaration
Objective-C
DBFILESImportFormatHtml
Swift
case html = 0
-
The provided data is interpreted as markdown.
Declaration
Objective-C
DBFILESImportFormatMarkdown
Swift
case markdown = 1
-
The provided data is interpreted as plain text.
Declaration
Objective-C
DBFILESImportFormatPlainText
Swift
case plainText = 2
-
(no description).
Declaration
Objective-C
DBFILESImportFormatOther
Swift
case other = 3