/// <summary>
        /// <inheritdoc/>
        /// </summary>
        public void NavigateToFindPlace(IPDFFindPage page)
        {
            if (page == null)
            {
                return;
            }

            ClearSelectionRectangles();
            NavigateToPage(page.RelatedPage.PageIndex + 1);
        }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PDFFindPosition"/> class.
 /// </summary>
 public PDFFindPosition(IPDFFindPage page)
 {
     Page = page ?? throw new ArgumentNullException(nameof(page));
 }