TextTransform

public enum TextTransform : String, Codable

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

  • The text is not altered.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    case lowercase