Loads the html code into the RichTextEditor control.

Namespace: RTE
Assembly: RichTextEditor (in RichTextEditor.dll) Version: 8.0.0.0 (8.0.0.0)

Syntax

C#
public bool LoadFormData(
	string text
)
Visual Basic
Public Function LoadFormData ( _
	text As String _
) As Boolean
Visual C++
public:
bool LoadFormData(
	String^ text
)

Parameters

text
Type: System..::..String
The html code to load into RichTextEditor

Return Value

[Missing <returns> documentation for "M:RTE.Editor.LoadFormData(System.String)"]

Examples

CopyC#
editor1.LoadFormData("Type Here...");

See Also