Esempio n. 1
0
 public bool IsExtensionChar(CharInfo charInfo) => throw MethodNotSupported(nameof(IsExtensionChar));
Esempio n. 2
0
 public bool HasNextLarger(CharInfo charInfo) => throw MethodNotSupported(nameof(HasNextLarger));
Esempio n. 3
0
 public CharInfo GetNextLargerCharInfo(CharInfo charInfo, TexStyle style) =>
 throw MethodNotSupported(nameof(GetNextLargerCharInfo));
Esempio n. 4
0
 public ExtensionChar GetExtension(CharInfo charInfo, TexStyle style) =>
 throw MethodNotSupported(nameof(GetExtension));
Esempio n. 5
0
        public bool IsExtensionChar(CharInfo charInfo)
        {
            var fontInfo = fontInfoList[charInfo.FontId];

            return(fontInfo.GetExtension(charInfo.Character) != null);
        }
Esempio n. 6
0
        public bool HasNextLarger(CharInfo charInfo)
        {
            var fontInfo = fontInfoList[charInfo.FontId];

            return(fontInfo.GetNextLarger(charInfo.Character) != null);
        }