Represents a single custom XML attribute or a smart tag property.
Used as an item of a CustomXmlPropertyCollection collection.
Shows how to create smart tags.
#include <Aspose.Words.Cpp/Markup/CustomXmlProperty.h>
Public Member Functions | |
CustomXmlProperty (const String &name, const String &uri, const String &value) | |
Initializes a new instance of this class. More... | |
String | get_Name () const |
Specifies the name of the custom XML attribute or smart tag property. More... | |
String | get_Uri () const |
Gets or sets the namespace URI of the custom XML attribute or smart tag property. More... | |
String | get_Value () const |
Gets or sets the value of the custom XML attribute or smart tag property. More... | |
virtual const TypeInfo & | GetType () const override |
virtual bool | Is (const TypeInfo &target) const override |
void | set_Uri (const String &value) |
Setter for get_Uri. More... | |
void | set_Value (const String &value) |
Setter for get_Value. More... | |
Static Public Member Functions | |
static const TypeInfo & | Type () |
Aspose::Words::Markup::CustomXmlProperty::CustomXmlProperty | ( | const System::String & | name, |
const System::String & | uri, | ||
const System::String & | value | ||
) |
Initializes a new instance of this class.
name | The name of the property. Cannot be null. |
uri | The namespace URI of the property. Cannot be null. |
value | The value of the property. Cannot be null. |
Shows how to create smart tags.
System::String Aspose::Words::Markup::CustomXmlProperty::get_Name | ( | ) | const |
Specifies the name of the custom XML attribute or smart tag property.
Cannot be null.
Default is empty string.
Shows how to create smart tags.
System::String Aspose::Words::Markup::CustomXmlProperty::get_Uri | ( | ) | const |
Gets or sets the namespace URI of the custom XML attribute or smart tag property.
Cannot be null.
Default is empty string.
Shows how to work with smart tag properties to get in depth information about smart tags.
System::String Aspose::Words::Markup::CustomXmlProperty::get_Value | ( | ) | const |
Gets or sets the value of the custom XML attribute or smart tag property.
Cannot be null.
Default is empty string.
Shows how to create smart tags.
|
overridevirtual |
Reimplemented from System::Object.
|
overridevirtual |
Reimplemented from System::Object.
void Aspose::Words::Markup::CustomXmlProperty::set_Uri | ( | const System::String & | value | ) |
void Aspose::Words::Markup::CustomXmlProperty::set_Value | ( | const System::String & | value | ) |
|
static |