Table of Contents

Interface ICharacterData

Namespace
SharpVectors.Dom
Assembly
SharpVectors.Core.dll

Provides text manipulation methods that are used by several classes.

public interface ICharacterData : INode, IXmlNode
Inherited Members

Properties

Data

Contains the data of the node.

Length

Gets the length of the data, in characters.

Methods

AppendData(string)

Appends the specified string to the end of the character data of the node.

DeleteData(int, int)

Removes a range of characters from the node.

InsertData(int, string)

Inserts the specified string at the specified character offset.

ReplaceData(int, int, string)

Replaces the specified number of characters starting at the specified offset with the specified string.

Substring(int, int)

Retrieves a substring of the full string from the specified range.