Encoding

HtmlFixedSaveOptions.Encoding property

Spécifie l’encodage à utiliser lors de l’exportation au format HTML. La valeur par défaut estnouveau codage UTF8 (vrai) (UTF-8 avec nomenclature).

public Encoding Encoding { get; set; }

Exemples

Montre comment définir le codage à utiliser lors de l’exportation d’un document au format HTML.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Writeln("Hello World!");

// L'encodage par défaut est UTF-8. Si nous voulons représenter notre document en utilisant un encodage différent,
// nous pouvons utiliser un objet SaveOptions pour définir un encodage spécifique.
HtmlFixedSaveOptions htmlFixedSaveOptions = new HtmlFixedSaveOptions
{
    Encoding = Encoding.GetEncoding("ASCII")
};

Assert.AreEqual("US-ASCII", htmlFixedSaveOptions.Encoding.EncodingName);

doc.Save(ArtifactsDir + "HtmlFixedSaveOptions.UseEncoding.html", htmlFixedSaveOptions);

Voir également