Aspose::Words::ControlChar::Tab method

ControlChar::Tab method

Tab character: “\x0009” or “\t”.

static System::String & Aspose::Words::ControlChar::Tab()

Examples

Shows how to set a custom interval for tab stop positions.

auto doc = System::MakeObject<Aspose::Words::Document>();
auto builder = System::MakeObject<Aspose::Words::DocumentBuilder>(doc);

// Set tab stops to appear every 72 points (1 inch).
builder->get_Document()->set_DefaultTabStop(72);

// Each tab character snaps the text after it to the next closest tab stop position.
builder->Writeln(System::String(u"Hello") + Aspose::Words::ControlChar::Tab() + u"World!");
builder->Writeln(System::String(u"Hello") + Aspose::Words::ControlChar::TabChar + u"World!");

See Also