PDFLineType

public enum PDFLineType
extension PDFLineType: PDFJSONSerializable

These types of lines are available for rendering

  • full: Line without any breaks
  • dashed: Line consists out of short dashes
  • dotted: Lines consists out of dots
  • No visible line

    Declaration

    Swift

    case none
  • Full line

    Declaration

    Swift

    case full
  • Line is dashed, dash length and spacing is three times the line width

    Declaration

    Swift

    case dashed
  • Line is dotted. Dot spacing is twice the line width

    Declaration

    Swift

    case dotted

JSON Serialization

  • Creates a serializable object

    Declaration

    Swift

    public var JSONRepresentation: AnyObject { get }