Bidi.OutputReverse Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
option bit for writeReordered(): write the output in reverse order
[Android.Runtime.Register("OUTPUT_REVERSE", ApiSince=29)]
public const short OutputReverse = 16;
[<Android.Runtime.Register("OUTPUT_REVERSE", ApiSince=29)>]
val mutable OutputReverse : int16
Field Value
Value = 16- Attributes
Remarks
option bit for writeReordered(): write the output in reverse order
This has the same effect as calling writeReordered()
first without this option, and then calling writeReverse()
without mirroring. Doing this in the same step is faster and avoids a temporary buffer. An example for using this option is output to a character terminal that is designed for RTL scripts and stores text in reverse order.
Java documentation for android.icu.text.Bidi.OUTPUT_REVERSE
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.