TextTransform

public enum TextTransform : String, Codable, CaseIterable

Specifies how to capitalize text, similar to the CSS text-transform property.

  • The text is not altered.

    Declaration

    Swift

    case none = "none"
  • Forces all letters to be displayed in uppercase.

    Declaration

    Swift

    case uppercase = "uppercase"
  • Forces all letters to be displayed in lowercase.

    Declaration

    Swift

    case lowercase = "lowercase"