Sets or returns the character set encoding that will be used in the exported HTML pages.
[Visual Basic]
Public Property CharacterSet As HtmlCharacterSet
[C#]
public HtmlCharacterSet CharacterSet {get; set;}
HtmlCharacterSet enumeration.
The default character set is UTF8. Setting this property will change the meta tag in the header of the resulting HTML pages to the appropriate IANA character set value.
For example: <META content="text/html;charset=ISO-8859-1" http-equiv=Content-Type>.
Additionally, the inner text portion of the pages will be encoded according to the specific character set's encoding rules and font names. If you are exporting a Document without headers (IncludeHtmlHeader=false), then you must insert the appropriate meta tag to ensure that the browser knows how the text is encoded.
[C#]
private void btnExport_Click(object sender, System.EventArgs e) |
[Visual Basic]
Private Sub Viewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Viewer1.Load |
HtmlExport Class | HtmlExport Members | HtmlCharacterSet Enumeration
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.