PDFLineType

public enum PDFLineType : String

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 = "none"
  • Full line

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    case dotted = "dotted"