TextJustify

public enum TextJustify : String, Codable, CaseIterable

Text justification options.

  • The text is aligned towards the anchor position.

    Declaration

    Swift

    case auto = "auto"
  • The text is aligned to the left.

    Declaration

    Swift

    case left = "left"
  • The text is centered.

    Declaration

    Swift

    case center = "center"
  • The text is aligned to the right.

    Declaration

    Swift

    case right = "right"