Spire.PDFViewer 8.2.6 adds support for “Find Previous” and “Find Next” functions
2025-10-31 08:26:33
We’re pleased to announce the release of Spire.PDFViewer 8.2.6. This version adds support for the “Find Previous” and “Find Next” functions in Form, WPF, and MAUI. In addition, the method pdfDocumentViewer1.SearchText() has been deprecated and replaced with pdfDocumentViewer1.Find(). More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDFVIEWER-616 Added support for “Find Previous” and “Find Next” functionsin Form, WPF, and MAUI. The pdfDocumentViewer1.SearchText() method has been deprecated and replaced with pdfDocumentViewer1.Find(). private void Form1_Load(object sender, EventArgs e) { string pdfDoc = @"test.pdf"; if (File.Exists(pdfDoc)) { this.pdfDocumentViewer1.LoadFromFile(pdfDoc); this.pdfDocumentViewer1.Find("FindedText", Color.Empty); } }…
Spire.PDFViewer 8.2.1 adds a platform-agnostic .NET 7.0 version
2025-09-30 09:17:32
We’re pleased to announce the release of Spire.PDFViewer 8.2.1. This update introduces a cross-platform .NET 7.0 version, along with the dedicated version for Windows, ensuring broad compatibility and seamless integration across environments. More details are as follows. Here is a list of changes made in this release Category ID Description New feature - Added a platform-agnostic .NET 7.0 version that runs across all operating systems. Adjustment - Enhanced the platform-specific version for .NET 7.0-Windows 10.0.19041. Click the link to get Spire.PDFViewer 8.2.1: https://www.e-iceblue.com/Download/download-pdf-viewer-for-net-now.html More information of Spire.PDFViewer new release or hotfix: https://www.e-iceblue.com/forum/spire-pdfviewer-new-release-or-hotfix-t2767.html
Spire.PDFViewer 8.1.8 supports MAUI on Windows
2025-09-05 08:51:10
We are excited to announce the release of Sprie.PDFViewer 8.1.8. This update introduces support for MAUI on Windows and resolves the issue of incomplete PDF content display. For more details, see below. Here is a list of changes made in this release Category ID Description New feature - Added support for MAUI on Windows.(New product) New feature SPIREPDFVIEWER-610 Added support in WinForm for applying border effect when selecting pages in Page Thumbnails. Bug SPIREPDFVIEWER-465 Fixed the issue where the content of a PDF cannot fully display in WinForm. Click the link to get Spire.PDFViewer 8.1.8: https://www.e-iceblue.com/Download/download-pdf-viewer-for-net-now.html More information of Spire.PDFViewer…
Spire.PDFViewer 8.1.3 fixes an issue
2025-05-30 10:09:42
We are delighted to announce the release of Spire.PDFViewer 8.1.3. This version fixes the issue that the control threw “NullReferenceException” after setting the “Anchor” property. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDFVIEWER-606 Fixes the issue that the control threw “NullReferenceException” after setting the “Anchor” property. Click the link to get Spire.PDFViewer 8.1.3: https://www.e-iceblue.com/Download/download-pdf-viewer-for-net-now.html More information of Spire.PDFViewer new release or hotfix: https://www.e-iceblue.com/forum/spire-pdfviewer-new-release-or-hotfix-t2767.html
Spire.PDFViewer 7.13 fixes the issue of incorrect preview of PDF content
2025-03-27 06:00:49
We're pleased to announce the release of Spire.PDFViewer 7.13. This update fixes two issues of incorrect preview of PDF content and incorrect horizontal and vertical scrollbar effects. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDFVIEWER-592 Fixes the issue of incorrect preview of PDF content. Bug SPIREPDFVIEWER-603 Fixes the issue of incorrect horizontal and vertical scrollbar effects. Click the link to get Spire.PDFViewer 7.13: https://www.e-iceblue.com/Download/download-pdf-viewer-for-net-now.html More information of Spire.PDFViewer new release or hotfix: https://www.e-iceblue.com/forum/spire-pdfviewer-new-release-or-hotfix-t2767.html
Spire.PDFViewer 7.12.6 supports obtaining the coordinates of a mouse click relative to the PDF page content
2024-02-07 07:20:34
We are happy to announce the release of Spire.PDFViewer 7.12.6. This version supports obtaining the coordinates of a mouse click relative to the PDF page content. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDFVIEWER-454 Spire.PdfDocumentViewer supports obtaining the coordinates of a mouse click relative to the PDF page content. private void Form1_Load(object sender, EventArgs e) { this.pdfDocumentViewer1.LoadFromFile("1.pdf"); this.pdfDocumentViewer1.MouseDown += new MouseEventHandler(PV_Click); } private void PV_Click(object sender, MouseEventArgs e) { string outputFile = "out.Pdf"; string outputFile_TXT = "out.txt"; File.Delete(outputFile_TXT); if (e.Button == MouseButtons.Left) { PointF[] controlPositions = new…
Spire.PDFViewer 7.12.3 supports the interface zoom effect using Ctrl + scroll wheel in WinForm projects
2023-12-21 07:14:00
We are pleased to announce the release of Spire.PDFViewer 7.12.3. This version supports the interface zoom effect by using Ctrl + scroll wheel in WinForm projects. What’s more, it also fixes the issue that text content could not be displayed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDFVIEWER-579 Supports the interface zoom effect by using Ctrl + scroll wheel in WinForm projects. this.KeyPreview = true; this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown); this.KeyUp += new System.Windows.Forms.KeyEventHandler(Form1_KeyUp); this.MouseWheel += new System.Windows.Forms.MouseEventHandler(Form1_MouseWheel); private bool m_PressCtrl = false; private float m_ZoomFactor = 1.0f;…
Spire.PDFViewer 7.12.0 fixes the issue that the application threw an exception when loading a PDF file
2023-08-16 03:44:10
We are pleased to announce the release of Spire.PDFViewer 7.12.0. This version fixes the issue that the application threw a "System.ArgumentNullException" exception when loading a PDF file. Meanwhile, some known issues are fixed successfully, such as the issue that the application threw a "System.OutOfMemoryException" exception when loading a PDF file. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDFVIEWER-575 Fixed the issue that the application threw a "System.ArgumentNullException" exception when loading a PDF file. Bug SPIREPDFVIEWER -576 Fixed the issue that the application threw a "System.OutOfMemoryException" exception when loading…