TextTransform

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

enum TextTransform : Enum<TextTransform> , LayerProperty

Parameters

value

String value of this property

Entries

NONE
Link copied to clipboard

The text is not altered.

NONE("none")
UPPERCASE
Link copied to clipboard

Forces all letters to be displayed in uppercase.

UPPERCASE("uppercase")
LOWERCASE
Link copied to clipboard

Forces all letters to be displayed in lowercase.

LOWERCASE("lowercase")

Functions

compareTo
Link copied to clipboard
operator override fun compareTo(other: TextTransform): Int
equals
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
finalize
Link copied to clipboard
override fun finalize()
getDeclaringClass
Link copied to clipboard
override fun getDeclaringClass(): Class<TextTransform>
hashCode
Link copied to clipboard
override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

name
Link copied to clipboard
override val name: String
ordinal
Link copied to clipboard
override val ordinal: Int
value
Link copied to clipboard

String value of this property

open override val value: String