ReplaceData Method

WebKit .NET

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

Replaces the substring of the specified length at the specified offset with a new string.

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

Syntax

C#
public void ReplaceData(
	int Offset,
	int Count,
	string Data
)
Visual Basic (Declaration)
Public Sub ReplaceData ( _
	Offset As Integer, _
	Count As Integer, _
	Data As String _
)
Visual C++
public:
void ReplaceData(
	int Offset, 
	int Count, 
	String^ Data
)

Parameters

Offset
Type: System..::.Int32
Offset of the data.
Count
Type: System..::.Int32
Length of the substring to replace.
Data
Type: System..::.String
The replacement data.

See Also