Show / Hide Table of Contents

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 Source

Id

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
| Edit this page View Source

Lines

Gets the lines that make up this paragraph.

Declaration
IReadOnlyList<ITextLine> Lines { get; }
Property Value
Type Description
IReadOnlyList<ITextLine>
| Edit this page View Source

Text

Gets the full text of this paragraph, with lines separated by newlines.

Declaration
string Text { get; }
Property Value
Type Description
string
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX