Aspose::Words::Loading::DocumentDirection enum
Contents
[
Hide
]DocumentDirection enum
Allows to specify the direction to flow the text in a document.
enum class DocumentDirection
Values
Name | Value | Description |
---|---|---|
LeftToRight | 0 | Left to right direction. |
RightToLeft | 1 | Right to left direction. |
Auto | 2 | Auto-detect direction. |
Examples
Shows how to detect plaintext document text direction.
// Create a "TxtLoadOptions" object, which we can pass to a document's constructor
// to modify how we load a plaintext document.
auto loadOptions = System::MakeObject<Aspose::Words::Loading::TxtLoadOptions>();
// Set the "DocumentDirection" property to "DocumentDirection.Auto" automatically detects
// the direction of every paragraph of text that Aspose.Words loads from plaintext.
// Each paragraph's "Bidi" property will store its direction.
loadOptions->set_DocumentDirection(Aspose::Words::Loading::DocumentDirection::Auto);
// Detect Hebrew text as right-to-left.
auto doc = System::MakeObject<Aspose::Words::Document>(get_MyDir() + u"Hebrew text.txt", loadOptions);
ASSERT_TRUE(doc->get_FirstSection()->get_Body()->get_FirstParagraph()->get_ParagraphFormat()->get_Bidi());
// Detect English text as right-to-left.
doc = System::MakeObject<Aspose::Words::Document>(get_MyDir() + u"English text.txt", loadOptions);
ASSERT_FALSE(doc->get_FirstSection()->get_Body()->get_FirstParagraph()->get_ParagraphFormat()->get_Bidi());
See Also
- Namespace Aspose::Words::Loading
- Library Aspose.Words for C++