OffsetEditSequence Add Method C# API
Appends an edit instruction to replace length bytes, starting at position offset, with the bytes contained in newValue.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public void Add(
	int offset,
	int length,
	string newValue
)

Parameters

offset
Type: System Int32
The offset in bytes from the beginning of the target string.
length
Type: System Int32
The number of bytes to replace.
newValue
Type: System String
The new string to insert.
See Also