HtmlToRtfHeaderFooterFromHtmlURL Method |
Set page header/footer from HTML document using URL.
Namespace: SautinSoftAssembly: SautinSoft.HtmlToRtf (in SautinSoft.HtmlToRtf.dll) Version: 2024.12.12
Syntax public void FromHtmlURL(
string url
)
Public Sub FromHtmlURL (
url As String
)
Parameters
- url String
- URL as string
Remarks We don't recommend to use complex web-sites as header or footer. The best is using simple HTML table with text and images as header/footer.
Example SautinSoft.HtmlToRtf h = new SautinSoft.HtmlToRtf();
HtmlConvertOptions opt = new HtmlConvertOptions();
opt.PageSetup.PageHeader.FromHtmlURL(@"http://mysite.com/header.htm");
Dim h As New SautinSoft.HtmlToRtf()
Dim opt As New HtmlConvertOptions()
opt.PageSetup.PageHeader.FromHtmlURL("http://mysite.com/header.htm")
See Also