DBPAPERPaperDocUpdatePolicyTag
Objective-C
enum DBPAPERPaperDocUpdatePolicyTag : NSInteger {}
Swift
@frozen enum DBPAPERPaperDocUpdatePolicyTag : Int, @unchecked Sendable
The DBPAPERPaperDocUpdatePolicyTag
enum type represents the possible tag
states with which the DBPAPERPaperDocUpdatePolicy
union can exist.
-
The content will be appended to the doc.
Declaration
Objective-C
DBPAPERPaperDocUpdatePolicyAppend
Swift
case append = 0
-
The content will be prepended to the doc. The doc title will not be affected.
Declaration
Objective-C
DBPAPERPaperDocUpdatePolicyPrepend
Swift
case prepend = 1
-
The document will be overwitten at the head with the provided content.
Declaration
Objective-C
DBPAPERPaperDocUpdatePolicyOverwriteAll
Swift
case overwriteAll = 2
-
(no description).
Declaration
Objective-C
DBPAPERPaperDocUpdatePolicyOther
Swift
case other = 3