API Reference
Class
OfficeOcrEngineResult
Recognition output returned by an OCR engine.
Inheritance
- Object
- OfficeOcrEngineResult
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Accepted by parameters
- Constructor DelegateOfficeOcrEngine.DelegateOfficeOcrEngine
Constructors
public OfficeOcrEngineResult() #Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public String Text { get; set; } #Recognized plain text in source reading order.
public Nullable<Double> Confidence { get; set; } #Overall normalized confidence from 0 through 1, when available.
public String Language { get; set; } #Detected or requested language identifier, when available.
public String Provider { get; set; } #Provider identifier reported by the engine.
public String Model { get; set; } #Provider model, engine, or trained-data identifier, when available.
public IReadOnlyList<OfficeOcrTextSpan> Spans { get; set; } #Optional line, word, and character spans in reading order.
public IReadOnlyList<OfficeDocumentDiagnostic> Diagnostics { get; set; } #Structured provider diagnostics produced during recognition.