ComplexScript

Font.ComplexScript property

Gibt an, ob der Inhalt dieses Laufs unabhängig von seinen Unicode-Zeichenwerten als komplexer Skripttext behandelt werden soll, wenn die Formatierung für diesen Lauf bestimmt wird.

public bool ComplexScript { get; set; }

Beispiele

Zeigt, wie Text hinzugefügt wird, der immer als komplexes Skript behandelt wird.

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

builder.Font.ComplexScript = true;

builder.Writeln("Text treated as complex script.");

doc.Save(ArtifactsDir + "Font.ComplexScript.docx");

Siehe auch