DocumentDirection

TxtLoadOptions.DocumentDirection property

Ruft eine Dokumentrichtung ab oder legt sie fest. Der Standardwert istLeftToRight .

public DocumentDirection DocumentDirection { get; set; }

Beispiele

Zeigt, wie die Textrichtung eines Klartextdokuments erkannt wird.

// Erstelle ein „TxtLoadOptions“-Objekt, das wir an den Konstruktor eines Dokuments übergeben können
// um zu ändern, wie wir ein Klartextdokument laden.
TxtLoadOptions loadOptions = new TxtLoadOptions();

// Setzen Sie die Eigenschaft „DocumentDirection“ auf „DocumentDirection.Auto“ automatisch erkennt
// die Richtung jedes Textabsatzes, den Aspose.Words aus Klartext lädt.
// Die „Bidi“-Eigenschaft jedes Absatzes speichert seine Richtung.
loadOptions.DocumentDirection = DocumentDirection.Auto;

// Hebräischen Text als von rechts nach links geschrieben erkennen.
Document doc = new Document(MyDir + "Hebrew text.txt", loadOptions);

Assert.True(doc.FirstSection.Body.FirstParagraph.ParagraphFormat.Bidi);

// Englischen Text als von rechts nach links geschrieben erkennen.
doc = new Document(MyDir + "English text.txt", loadOptions);

Assert.False(doc.FirstSection.Body.FirstParagraph.ParagraphFormat.Bidi);

Siehe auch