PDFTableCellAlignment

public enum PDFTableCellAlignment : String

Options for aligning content inside a table cell

  • Content will be aligned in the top left corner

    Declaration

    Swift

    case topLeft = "top-left"
  • top

    Content will be aligned with the top edge, centered horizontally

    Declaration

    Swift

    case top = "top"
  • Content will be aligned in the top right corner

    Declaration

    Swift

    case topRight = "top-right"
  • Content will be aligned with the left edge, centered vertically

    Declaration

    Swift

    case left = "left"
  • Content will be centered horizontally & vertically

    Declaration

    Swift

    case center = "center"
  • Content will be aligned with the right edge, centered horizontally

    Declaration

    Swift

    case right = "right"
  • Content will be aligned in the bottom left corner

    Declaration

    Swift

    case bottomLeft = "bottom-left"
  • Content will be aligned with the bottom edge, centered horizontally

    Declaration

    Swift

    case bottom = "bottom"
  • Content will be aligned in the top right corner

    Declaration

    Swift

    case bottomRight = "bottom-right"