Aspose::Words::Fields::FieldToc::get_CaptionlessTableOfFiguresLabel method

FieldToc::get_CaptionlessTableOfFiguresLabel method

Gets or sets the name of the sequence identifier used when building a table of figures that does not include caption’s label and number.

System::String Aspose::Words::Fields::FieldToc::get_CaptionlessTableOfFiguresLabel()

Examples

Shows how to set the name of the sequence identifier.

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

auto fieldToc = System::ExplicitCast<Aspose::Words::Fields::FieldToc>(builder->InsertField(Aspose::Words::Fields::FieldType::FieldTOC, true));
fieldToc->set_CaptionlessTableOfFiguresLabel(u"Test");

ASSERT_EQ(u" TOC  \\a Test", fieldToc->GetFieldCode());

See Also