iTextSharp.text.pdf.ArabicLigaturizer.IsVowel C# (CSharp) Метод

IsVowel() статический приватный Метод

static private IsVowel ( char s ) : bool
s char
Результат bool
        static bool IsVowel(char s)
        {
            return ((s >= '\u064B') && (s <= '\u0655')) || (s == '\u0670');
        }