SplitText Method

WebKit .NET

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

Splits the text node into two nodes at the specified offset.

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

Syntax

C#
public Text SplitText(
	int Offset
)
Visual Basic (Declaration)
Public Function SplitText ( _
	Offset As Integer _
) As Text
Visual C++
public:
Text^ SplitText(
	int Offset
)

Parameters

Offset
Type: System..::.Int32
The offset of the text.

Return Value

A Text node containing the text after the offset.

See Also