Class DocumentBlock<T>
- Namespace
- AiDotNet.ComputerVision.OCR.EndToEnd
- Assembly
- AiDotNet.dll
A block of text in a document (paragraph, header, etc.).
public class DocumentBlock<T>
Type Parameters
T
- Inheritance
-
DocumentBlock<T>
- Inherited Members
Properties
BlockType
Type of block.
public DocumentBlockType BlockType { get; set; }
Property Value
Lines
Lines in this block.
public List<DocumentLine<T>> Lines { get; set; }
Property Value
- List<DocumentLine<T>>
Text
Full text of this block.
public string Text { get; set; }