Aspose::Words::Markup::CustomXmlProperty class
Contents
[
Hide
]CustomXmlProperty class
Represents a single custom XML attribute or a smart tag property. To learn more, visit the Structured Document Tags or Content Control documentation article.
class CustomXmlProperty : public System::Object
Methods
Method | Description |
---|---|
CustomXmlProperty(const System::String&, const System::String&, const System::String&) | Initializes a new instance of this class. |
get_Name() const | Specifies the name of the custom XML attribute or smart tag property. |
get_Uri() const | Gets or sets the namespace URI of the custom XML attribute or smart tag property. |
get_Value() const | Gets or sets the value of the custom XML attribute or smart tag property. |
GetType() const override | |
Is(const System::TypeInfo&) const override | |
set_Uri(const System::String&) | Setter for Aspose::Words::Markup::CustomXmlProperty::get_Uri. |
set_Value(const System::String&) | Setter for Aspose::Words::Markup::CustomXmlProperty::get_Value. |
static Type() |
Remarks
Used as an item of a CustomXmlPropertyCollection collection.
Examples
Shows how to create smart tags.
void Create()
{
auto doc = MakeObject<Document>();
// A smart tag appears in a document with Microsoft Word recognizes a part of its text as some form of data,
// such as a name, date, or address, and converts it to a hyperlink that displays a purple dotted underline.
auto smartTag = MakeObject<SmartTag>(doc);
// Smart tags are composite nodes that contain their recognized text in its entirety.
// Add contents to this smart tag manually.
smartTag->AppendChild(MakeObject<Run>(doc, u"May 29, 2019"));
// Microsoft Word may recognize the above contents as being a date.
// Smart tags use the "Element" property to reflect the type of data they contain.
smartTag->set_Element(u"date");
// Some smart tag types process their contents further into custom XML properties.
smartTag->get_Properties()->Add(MakeObject<CustomXmlProperty>(u"Day", String::Empty, u"29"));
smartTag->get_Properties()->Add(MakeObject<CustomXmlProperty>(u"Month", String::Empty, u"5"));
smartTag->get_Properties()->Add(MakeObject<CustomXmlProperty>(u"Year", String::Empty, u"2019"));
// Set the smart tag's URI to the default value.
smartTag->set_Uri(u"urn:schemas-microsoft-com:office:smarttags");
doc->get_FirstSection()->get_Body()->get_FirstParagraph()->AppendChild(smartTag);
doc->get_FirstSection()->get_Body()->get_FirstParagraph()->AppendChild(MakeObject<Run>(doc, u" is a date. "));
// Create another smart tag for a stock ticker.
smartTag = MakeObject<SmartTag>(doc);
smartTag->set_Element(u"stockticker");
smartTag->set_Uri(u"urn:schemas-microsoft-com:office:smarttags");
smartTag->AppendChild(MakeObject<Run>(doc, u"MSFT"));
doc->get_FirstSection()->get_Body()->get_FirstParagraph()->AppendChild(smartTag);
doc->get_FirstSection()->get_Body()->get_FirstParagraph()->AppendChild(MakeObject<Run>(doc, u" is a stock ticker."));
// Print all the smart tags in our document using a document visitor.
doc->Accept(MakeObject<ExSmartTag::SmartTagPrinter>());
// Older versions of Microsoft Word support smart tags.
doc->Save(ArtifactsDir + u"SmartTag.Create.doc");
// Use the "RemoveSmartTags" method to remove all smart tags from a document.
ASSERT_EQ(2, doc->GetChildNodes(NodeType::SmartTag, true)->get_Count());
doc->RemoveSmartTags();
ASSERT_EQ(0, doc->GetChildNodes(NodeType::SmartTag, true)->get_Count());
}
class SmartTagPrinter : public DocumentVisitor
{
public:
VisitorAction VisitSmartTagStart(SharedPtr<SmartTag> smartTag) override
{
std::cout << "Smart tag type: " << smartTag->get_Element() << std::endl;
return VisitorAction::Continue;
}
VisitorAction VisitSmartTagEnd(SharedPtr<SmartTag> smartTag) override
{
std::cout << "\tContents: \"" << smartTag->ToString(SaveFormat::Text) << "\"" << std::endl;
if (smartTag->get_Properties()->get_Count() == 0)
{
std::cout << "\tContains no properties" << std::endl;
}
else
{
std::cout << "\tProperties: ";
auto properties = MakeArray<String>(smartTag->get_Properties()->get_Count());
int index = 0;
for (const auto& cxp : System::IterateOver(smartTag->get_Properties()))
{
properties[index++] = String::Format(u"\"{0}\" = \"{1}\"", cxp->get_Name(), cxp->get_Value());
}
std::cout << String::Join(u", ", properties) << std::endl;
}
return VisitorAction::Continue;
}
};
See Also
- Namespace Aspose::Words::Markup
- Library Aspose.Words for C++