无法在此处访问内部 属性 'ConvertedHtmlElementSelector'
Cannot access internal property 'ConvertedHtmlElementSelector' here
我正在使用 HiQPdf Free 从 URL 生成 PDF。我在 their documentation 中注意到,您可以简单地抓取特定元素而不是整个页面。它会是这样的:
HtmlToPdf htmlToPdfConverter = new HtmlToPdf();
htmlToPdfConverter.ConvertedHtmlElementSelector = "#logo";
htmToPdfConverter.ConvertUrlToFile("https://your-website.com/", "/path/to/pdf.pdf");
但是,当我在我的代码中执行 htmlToPdfConverter.ConvertedHtmlElementSelector
时,它告诉我这个错误:
Cannot access internal property 'ConvertedHtmlElementSelector' here
这可能是因为它是一项付费功能吗?这似乎是唯一明显的原因,但是,我无法找到任何来源。
仅将 HTML 页面的一个区域转换为 PDF 是完整版的一项功能,在免费版中不可用。在 http://www.hiqpdf.com/demo/ConvertHtmlRegionToPdf.aspx
处有一个 C# 和 VB.NET 代码示例的此功能示例
我正在使用 HiQPdf Free 从 URL 生成 PDF。我在 their documentation 中注意到,您可以简单地抓取特定元素而不是整个页面。它会是这样的:
HtmlToPdf htmlToPdfConverter = new HtmlToPdf();
htmlToPdfConverter.ConvertedHtmlElementSelector = "#logo";
htmToPdfConverter.ConvertUrlToFile("https://your-website.com/", "/path/to/pdf.pdf");
但是,当我在我的代码中执行 htmlToPdfConverter.ConvertedHtmlElementSelector
时,它告诉我这个错误:
Cannot access internal property 'ConvertedHtmlElementSelector' here
这可能是因为它是一项付费功能吗?这似乎是唯一明显的原因,但是,我无法找到任何来源。
仅将 HTML 页面的一个区域转换为 PDF 是完整版的一项功能,在免费版中不可用。在 http://www.hiqpdf.com/demo/ConvertHtmlRegionToPdf.aspx
处有一个 C# 和 VB.NET 代码示例的此功能示例