91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C# pdfiumviewer能搜索文本嗎

c#
小樊
81
2024-11-16 23:14:56
欄目: 編程語言

是的,C#的PdfiumViewer控件可以搜索文本。以下是一個簡單的示例,演示了如何使用PdfiumViewer控件在PDF文檔中搜索文本:

首先,確保已將PdfiumViewer控件添加到項目中。然后,使用以下代碼在PDF文檔中搜索文本:

using System;
using System.Threading.Tasks;
using PdfiumViewer;
using System.Windows;

namespace PdfiumViewerExample
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            LoadPdf("path/to/your/pdf/file.pdf");
        }

        private async void LoadPdf(string pdfPath)
        {
            using (var pdfDocument = await PdfiumViewer.LoadDocumentAsync(pdfPath))
            {
                var searchText = "example text";
                var results = await pdfDocument.SearchTextAsync(searchText);

                if (results.Count > 0)
                {
                    MessageBox.Show($"Found {results.Count} occurrences of '{searchText}'.");
                }
                else
                {
                    MessageBox.Show($"No occurrences of '{searchText}' found.");
                }
            }
        }
    }
}

在這個示例中,我們首先加載PDF文檔,然后使用SearchTextAsync方法搜索指定的文本。如果找到了匹配項,將顯示一個包含匹配項數量的對話框。否則,將顯示一個未找到匹配項的對話框。

0
揭西县| 于都县| 台南市| 定西市| 榆树市| 瓮安县| 城口县| 呼图壁县| 通渭县| 项城市| 宝兴县| 连平县| 丽水市| 都安| 上饶县| 资兴市| 司法| 布拖县| 永春县| 得荣县| 龙南县| 湾仔区| 西丰县| 仙桃市| 深水埗区| 阿巴嘎旗| 苍溪县| 崇文区| 临城县| 苍山县| 绵竹市| 壤塘县| 仁化县| 宿迁市| 新营市| 额敏县| 平果县| 金门县| 巴南区| 天长市| 白银市|