Aspose::Words::Markup::StructuredDocumentTagCollection::Remove method
Contents
[
Hide
]StructuredDocumentTagCollection::Remove method
Removes the structured document tag with the specified identifier.
void Aspose::Words::Markup::StructuredDocumentTagCollection::Remove(int32_t id)
Parameter | Type | Description |
---|---|---|
id | int32_t | The structured document tag identifier. |
Examples
Shows how to remove structured document tag.
auto doc = System::MakeObject<Aspose::Words::Document>(get_MyDir() + u"Structured document tags.docx");
System::SharedPtr<Aspose::Words::Markup::StructuredDocumentTagCollection> structuredDocumentTags = doc->get_Range()->get_StructuredDocumentTags();
System::SharedPtr<Aspose::Words::Markup::IStructuredDocumentTag> sdt;
for (int32_t i = 0; i < structuredDocumentTags->get_Count(); i++)
{
sdt = structuredDocumentTags->idx_get(i);
std::cout << sdt->get_Title() << std::endl;
}
sdt = structuredDocumentTags->GetById(1691867797);
ASSERT_EQ(1691867797, sdt->get_Id());
ASSERT_EQ(5, structuredDocumentTags->get_Count());
// Remove the structured document tag by Id.
structuredDocumentTags->Remove(1691867797);
// Remove the structured document tag at position 0.
structuredDocumentTags->RemoveAt(0);
ASSERT_EQ(3, structuredDocumentTags->get_Count());
See Also
- Class StructuredDocumentTagCollection
- Namespace Aspose::Words::Markup
- Library Aspose.Words for C++