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

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

Returns the labels associated to this TextBlock, or null if no such labels exist.
Returns the labels associated to this TextBlock, or null if no such labels exist. NOTE: The returned instance is the one used directly in TextBlock. You have full access to the data structure. However it is recommended to use the label-specific methods in TextBlock whenever possible.
public GetLabels ( ) : ICollection
Результат ICollection
        public virtual ICollection<string> GetLabels()
        {
            return labels;
        }