public bool IsExtensionChar(CharInfo charInfo) => throw MethodNotSupported(nameof(IsExtensionChar));
public bool HasNextLarger(CharInfo charInfo) => throw MethodNotSupported(nameof(HasNextLarger));
public CharInfo GetNextLargerCharInfo(CharInfo charInfo, TexStyle style) => throw MethodNotSupported(nameof(GetNextLargerCharInfo));
public ExtensionChar GetExtension(CharInfo charInfo, TexStyle style) => throw MethodNotSupported(nameof(GetExtension));
public bool IsExtensionChar(CharInfo charInfo) { var fontInfo = fontInfoList[charInfo.FontId]; return(fontInfo.GetExtension(charInfo.Character) != null); }
public bool HasNextLarger(CharInfo charInfo) { var fontInfo = fontInfoList[charInfo.FontId]; return(fontInfo.GetNextLarger(charInfo.Character) != null); }