Encoding

HtmlFixedSaveOptions.Encoding property

يحدد الترميز الذي سيتم استخدامه عند التصدير إلى HTML. القيمة الافتراضية هيترميز UTF8 الجديد (صحيح) (UTF-8 مع قائمة مكونات الصنف).

public Encoding Encoding { get; set; }

أمثلة

يوضح كيفية تعيين الترميز الذي سيتم استخدامه أثناء تصدير مستند إلى HTML.

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

builder.Writeln("Hello World!");

// الترميز الافتراضي هو UTF-8. إذا أردنا تمثيل وثيقتنا باستخدام ترميز مختلف،
// يمكننا استخدام كائن SaveOptions لتعيين ترميز محدد.
HtmlFixedSaveOptions htmlFixedSaveOptions = new HtmlFixedSaveOptions
{
    Encoding = Encoding.GetEncoding("ASCII")
};

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

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

أنظر أيضا