Aspose::Words::Saving::TxtListIndentation class

TxtListIndentation class

Specifies how list levels are indented when document is exporting to Text format. To learn more, visit the Save a Document documentation article.

class TxtListIndentation : public System::Object

Methods

MethodDescription
get_Character() constGets or sets which character to use for indenting list levels. The default value is ‘\0’, that means there is no indentation.
get_Count() constGets or sets how many Character to use as indentation per one list level. The default value is 0, that means no indentation.
GetType() const override
Is(const System::TypeInfo&) const override
set_Character(char16_t)Setter for Aspose::Words::Saving::TxtListIndentation::get_Character.
set_Count(int32_t)Setter for Aspose::Words::Saving::TxtListIndentation::get_Count.
TxtListIndentation()
static Type()

Examples

Shows how to configure list indenting when saving a document to plaintext.

auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);

// Create a list with three levels of indentation.
builder->get_ListFormat()->ApplyNumberDefault();
builder->Writeln(u"Item 1");
builder->get_ListFormat()->ListIndent();
builder->Writeln(u"Item 2");
builder->get_ListFormat()->ListIndent();
builder->Write(u"Item 3");

// Create a "TxtSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we save the document to plaintext.
auto txtSaveOptions = MakeObject<TxtSaveOptions>();

// Set the "Character" property to assign a character to use
// for padding that simulates list indentation in plaintext.
txtSaveOptions->get_ListIndentation()->set_Character(u' ');

// Set the "Count" property to specify the number of times
// to place the padding character for each list indent level.
txtSaveOptions->get_ListIndentation()->set_Count(3);

doc->Save(ArtifactsDir + u"TxtSaveOptions.TxtListIndentation.txt", txtSaveOptions);

String docText = System::IO::File::ReadAllText(ArtifactsDir + u"TxtSaveOptions.TxtListIndentation.txt");

ASSERT_EQ(String(u"1. Item 1\r\n") + u"   a. Item 2\r\n" + u"      i. Item 3\r\n", docText);

See Also