Enum TextEditOptions.NoCharacterAction

TextEditOptions.NoCharacterAction enumeration

Action to perform if font does not contain required character

public enum NoCharacterAction

Values

NameValueDescription
ThrowException0Throw exception
UseStandardFont1Repalce font to standard font which contains required character
ReplaceAnyway2Replace text anyway without font substitution
ReplaceFonts3Replaces fonts as necessary to ensure all characters in the text can be displayed. The font substitution algorithm follows these steps: 1. If the user explicitly sets the Font property, check if the specified font can display the desired characters. 2. If no user-defined font is set, search through fonts added via the Sources. 3. Analyze the text to identify its alphabet or script and suggest font names accordingly. Attempt to locate and use these fonts from the system. 4. As a fallback, search the system for any font capable of displaying the required characters.
UseCustomReplacementFont4Repalce font to defined replacement font

See Also