namespace ElectronNET.API.Entities
{
///
/// The result of a text finding session, reported by the found-in-page event.
///
public class FoundInPageResult
{
///
/// The identifier of the request returned by FindInPageAsync.
///
public int RequestId { get; set; }
///
/// Position of the active match.
///
public int ActiveMatchOrdinal { get; set; }
///
/// Number of matches.
///
public int Matches { get; set; }
///
/// Coordinates of the first match region.
///
public Rectangle SelectionArea { get; set; }
///
/// Indicates whether more responses are to follow.
///
public bool FinalUpdate { get; set; }
}
}