SubstringData Method

WebKit .NET

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

Gets a substring of the specified length at the specified offset of the data.

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

Syntax

C#
public string SubstringData(
	int Offset,
	int Count
)
Visual Basic (Declaration)
Public Function SubstringData ( _
	Offset As Integer, _
	Count As Integer _
) As String
Visual C++
public:
String^ SubstringData(
	int Offset, 
	int Count
)

Parameters

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

Return Value

The substring of data.

See Also