UpdateAmbiguousTextFont

SaveOptions.UpdateAmbiguousTextFont property

Bestimmt, ob die Schriftattribute entsprechend dem verwendeten Zeichencode geändert werden.

public bool UpdateAmbiguousTextFont { get; set; }

Beispiele

Zeigt, wie die Schriftart aktualisiert wird, damit sie dem verwendeten Zeichencode entspricht.

Document doc = new Document(MyDir + "Special symbol.docx");
Run run = doc.FirstSection.Body.FirstParagraph.Runs[0];
Console.WriteLine(run.Text); // ฿
Console.WriteLine(run.Font.Name); // Arial

OoxmlSaveOptions saveOptions = new OoxmlSaveOptions();
saveOptions.UpdateAmbiguousTextFont = true;
doc.Save(ArtifactsDir + "OoxmlSaveOptions.UpdateAmbiguousTextFont.docx", saveOptions);

doc = new Document(ArtifactsDir + "OoxmlSaveOptions.UpdateAmbiguousTextFont.docx");
run = doc.FirstSection.Body.FirstParagraph.Runs[0];
Console.WriteLine(run.Text); // ฿
Console.WriteLine(run.Font.Name); // Angsana Neu

Siehe auch