Helper function used to ensure we can get the plain text and strip out all of the HTML tags from the document.

Namespace: CuteEditor
Assembly: CuteEditor (in CuteEditor.dll) Version: 6.7.0.0

Syntax

C#
public static string ExtractPlainTextOutOfHtml(
	string html
)
Visual Basic
Public Shared Function ExtractPlainTextOutOfHtml ( _
	html As String _
) As String
Visual C++
public:
static String^ ExtractPlainTextOutOfHtml(
	String^ html
)

Parameters

html
Type: System..::..String
HTML

Return Value

Clean text with no script tags.

See Also