iTextSharp.text.pdf.ArabicLigaturizer.IsVowel C# (CSharp) Method

IsVowel() static private method

static private IsVowel ( char s ) : bool
s char
return bool
        static bool IsVowel(char s)
        {
            return ((s >= '\u064B') && (s <= '\u0655')) || (s == '\u0670');
        }