PdfRpt.Core.Helper.RunDirectionHelper.ContainsRtlText C# (CSharp) Méthode

ContainsRtlText() public static méthode

Indicates whether the input text contains rtl data or not
public static ContainsRtlText ( this data ) : bool
data this input text
Résultat bool
        public static bool ContainsRtlText(this string data)
        {
            if (string.IsNullOrEmpty(data)) return false;
            return MatchArabicHebrew.IsMatch(data);
        }