[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.Encoding

Encoding Property

Encoding

Gets or sets the encoding used when exporting to HTML.

If no encoding has been set, the default value is UTF-8.

Declaration
public Encoding Encoding { get; set; }
Public Property Encoding As Encoding
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.Encoding = Encoding.Unicode;
Encoding encoding = options.Encoding;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);