Encoding of input HTML
Namespace:
SautinSoftAssembly: SautinSoft.HtmlToRtf (in SautinSoft.HtmlToRtf.dll) Version: 4.1.7.15
Syntax
| C# | Visual Basic |
public HtmlToRtf..::.eEncoding Encoding { get; set; }
Public Property Encoding As HtmlToRtf..::.eEncoding
Remarks
Allows to set encoding of input HTML document. By default this property is set to AutoSelect.
This means that the component will try to detect encoding by itself from the tag <meta ... charset=...">.
Examples
SautinSoft.HtmlToRtf h = new SautinSoft.HtmlToRtf();
h.Encoding = HtmlToRtf.eEncoding.UTF_8;Dim h As New SautinSoft.HtmlToRtf() h.Encoding = HtmlToRtf.eEncoding.UTF_8