VerticalFlipTextMode Enumeration

Specifies how the text should be flipped when using FlipTextVertically(String, VerticalFlipTextMode, Char) function.

Definition

Namespace: DevCase.Core.DataProcessing.Common
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum VerticalFlipTextMode

Members

CharByChar 0 Divides the text into characters. That is, all the characters from every text row get rearranged in columns.
WordByWord 1 Divides the text into words.

That is, all the words from every text row get rearranged in columns.

SentenceBySentence 2 Divides the text into sentences.

That is, if you have several sentences in one line, then after rewriting them vertically, they will appear in a single column.

See Also