PdfRpt.Core.Helper.RunDirectionHelper.ContainsRtlText C# (CSharp) Метод

ContainsRtlText() публичный статический Метод

Indicates whether the input text contains rtl data or not
public static ContainsRtlText ( this data ) : bool
data this input text
Результат bool
        public static bool ContainsRtlText(this string data)
        {
            if (string.IsNullOrEmpty(data)) return false;
            return MatchArabicHebrew.IsMatch(data);
        }