PTPDFAnnotationBorderAppearance

@protocol PTPDFAnnotationBorderAppearance <NSObject>

Properties common to annotation border appearances.

  • The width of the border.

    Declaration

    Objective-C

    @required
    @property (nonatomic, assign, unsafe_unretained, readwrite) CGFloat width;

    Swift

    var width: CGFloat { get set }
  • The alternating pattern of dashes and gaps used in drawing the border.

    Declaration

    Objective-C

    @required
    @property (nonatomic, copy, readwrite, nullable)
        NSArray<NSNumber *> *dashPattern;

    Swift

    var dashPattern: [NSNumber]? { get set }