|
■No101021 (KOZ さん) に返信
> ■No101019 (kenta さん) に返信
> 色々出てきますが何か試したものはありますか?
1番目に出てきたpdfドキュメント内のテキストを検索したいです
c#のフォームtextboxに書き込んだ内容で検索していく様にしたいのですが
そこに書いてあるコードでやってみたのですがエラーになってしまいました
どこがおかしいでしょうか
using Spire.Pdf;
using Spire.Pdf.General.Find;
namespace WinFormsApp32
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
PdfDocument pdf = new PdfDocument();
pdf.LoadFromFile(@"c:\DATA\#20.pdf");
PdfTextFind[] AllMatchedText = null;
foreach (PdfPageBase page in pdf.Pages)
{
Name = textbox1.text
AllMatchedText = page.FindText(Name).Finds;
foreach (PdfTextFind text in AllMatchedText)
{
text.ApplyHighLight();
}
}
pdf.SaveToFile(@"c:\DATA\#21.pdf");
}
}
}
|