NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlCharacterData.DeleteData

Remove a range of characters from the node.

[Visual Basic]
Overridable Public Sub DeleteData( _
   ByVal offset As Integer, _
   ByVal count As Integer _
)
[C#]
public virtual void DeleteData(
   int offset,
   int count
);
[C++]
public: virtual void DeleteData(
   int offset,
   int count
);
[JScript]
public function DeleteData(
   offset : int,
   count : int
);

Parameters

offset
Offset, in characters, at which to start deleting string data.
count
[To be supplied.]

Remarks

On success, data and length reflect the change.

See Also

XmlCharacterData Class | XmlCharacterData Members | System.NewXml Namespace