XmlCharacterData (Class)

Defines the structure for XML text manipulation methods used by other XML classes.

Namespace: elsystem.xml

Properties
  Name Type Description
Public property Data string Contains the character data of the node.
Public property Length int Gets the length of the character data string.
Methods
  Name Description
Public property AppendData(Data) Appends the specified string to the end of the character data for the node.
Public property Create(Doc) Initializes a new instance of the class for the specified XML document.
Public property DeleteData(Offset,Count) Removes a range of characters from the node character data starting at the offset position for a specified number of characters.
Public property InsertData(Offset,Data) Inserts a data string in the node character data at the offset position in the node character data.
Public property ReplaceData(Offset,Count,Data) Replaces a range of characters in the node character data with a data string starting at the offset position for the specified number of characters.
Public property Substring(Offset,Count) Retrieves a substring of the node character data starting at the offset position for the specified number of characters.