TextWritingMode

The property allows control over a symbol's orientation. Note that the property values act as a hint, so that a symbol whose language doesn’t support the provided orientation will be laid out in its natural orientation. Example: English point symbol will be rendered horizontally even if array value contains single 'vertical' enum value. The order of elements in an array define priority order for the placement of an orientation variant.

enum TextWritingMode : Enum<TextWritingMode> , LayerProperty

Parameters

value

String value of this property

Entries

HORIZONTAL
Link copied to clipboard

If a text's language supports horizontal writing mode, symbols with point placement would be laid out horizontally.

HORIZONTAL("horizontal")
VERTICAL
Link copied to clipboard

If a text's language supports vertical writing mode, symbols with point placement would be laid out vertically.

VERTICAL("vertical")

Functions

compareTo
Link copied to clipboard
operator override fun compareTo(other: TextWritingMode): 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<TextWritingMode>
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