NBoilerpipe.Document.TextBlock.HasLabel C# (CSharp) Method

HasLabel() public method

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
return bool
        public virtual bool HasLabel(string label)
        {
            return labels != null && labels.Contains(label);
        }