DeleteData Method

WebKit .NET

[This is preliminary documentation and is subject to change.]

Deletes the substring of the specified length at the specified offset.

Namespace:  WebKit.DOM
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public void DeleteData(
	int Offset,
	int Count
)
Visual Basic (Declaration)
Public Sub DeleteData ( _
	Offset As Integer, _
	Count As Integer _
)
Visual C++
public:
void DeleteData(
	int Offset, 
	int Count
)

Parameters

Offset
Type: System..::.Int32
Offset of the data.
Count
Type: System..::.Int32
Length of substring to delete.

See Also