Contains all of the read (OCR) results from the document.

/// <summary>
/// ReadResultsItem class.
/// </summary>public class ReadResultsItem
{
	public int Page { get; set; }
	public double Angle { get; set; }
	public double Width { get; set; }
	public double Height { get; set; }
	public string Unit { get; set; }
	public List<string> Text { get; set; }
}