PSPDFPolygonAnnotationIntent
Objective-C
NS_CLOSED_ENUM(NSInteger, PSPDFPolygonAnnotationIntent) {
/// No intent.
PSPDFPolygonAnnotationIntentNone = 0,
/// The annotation is intended to function as a cloud object.
PSPDFPolygonAnnotationIntentPolygonCloud,
/// The polygon annotation is intended to function as a dimension. (not implemented)
PSPDFPolygonAnnotationIntentPolygonDimension
}
Swift
@frozen enum Intent : Int
Undocumented
-
No intent.
Declaration
Objective-C
PSPDFPolygonAnnotationIntentNone = 0
Swift
case none = 0
-
The annotation is intended to function as a cloud object.
Declaration
Objective-C
PSPDFPolygonAnnotationIntentPolygonCloud
Swift
case polygonCloud = 1
-
The polygon annotation is intended to function as a dimension. (not implemented)
Declaration
Objective-C
PSPDFPolygonAnnotationIntentPolygonDimension
Swift
case polygonDimension = 2