Interface ITextParagraph
Represents a paragraph of text composed of one or more lines.
Namespace: Zaya.Primitives.OCR
Assembly: Zaya.Primitives.dll
Syntax
public interface ITextParagraph
Properties
| Edit this page View SourceId
Stable identity for this paragraph across frames. When the paragraph matches a previous-frame paragraph, equals that paragraph's Id; otherwise a newly generated unique value.
Declaration
Guid Id { get; }
Property Value
| Type | Description |
|---|---|
| Guid |
Lines
Gets the lines that make up this paragraph.
Declaration
IReadOnlyList<ITextLine> Lines { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<ITextLine> |
Text
Gets the full text of this paragraph, with lines separated by newlines.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| string |