NBoilerpipe.Document.TextBlock.HasLabel C# (CSharp) Метод

HasLabel() публичный Метод

Checks whether this TextBlock has the given label.
Checks whether this TextBlock has the given label.
public HasLabel ( string label ) : bool
label string The label
Результат bool
        public virtual bool HasLabel(string label)
        {
            return labels != null && labels.Contains(label);
        }