System::Xml::XmlCharacterData class

XmlCharacterData class

Provides text manipulation methods that are used by several classes.

class XmlCharacterData : public System::Xml::XmlLinkedNode

Methods

MethodDescription
virtual AppendData(String)Appends the specified string to the end of the character data of the node.
virtual DeleteData(int32_t, int32_t)Removes a range of characters from the node.
virtual get_Data()Returns the data of the node.
get_InnerText() overrideReturns the concatenated values of the node and all the children of the node.
virtual get_Length()Returns the length of the data, in characters.
get_Value() overrideReturns the value of the node.
virtual InsertData(int32_t, String)Inserts the specified string at the specified character offset.
virtual ReplaceData(int32_t, int32_t, String)Replaces the specified number of characters starting at the specified offset with the specified string.
virtual set_Data(String)Sets the data of the node.
set_InnerText(String) overrideSets the concatenated values of the node and all the children of the node.
set_Value(String) overrideSets the value of the node.
virtual Substring(int32_t, int32_t)Retrieves a substring of the full string from the specified range.

Typedefs

TypedefDescription
PtrAn alias for shared pointer to an instance of this class.

See Also