Dropbox .NET SDK
Show / Hide Table of Contents

Class GetOcrResult

The get ocr result object

Inheritance
object
GetOcrResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class GetOcrResult

Constructors

View Source

GetOcrResult(string, string)

Declaration
public GetOcrResult(string text = "", string hocr = "")
Parameters
Type Name Description
string text
string hocr

Properties

View Source

Hocr

Declaration
public string Hocr { get; protected set; }
Property Value
Type Description
string
View Source

Text

The plain-text content extracted from the file via OCR. Words within a line are separated by a single space, lines are newline-separated in reading order, and for multi-page PDFs pages are separated by a blank line in page order. May be empty when no text is detected in the source.

Declaration
public string Text { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK