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