"insertHtml"

Inserts an HTML text at the current cursor position.

Synopsis

void insertHtml(string text);

Parameters

Parameter Description
text The text to be added.

Description

Inserts an HTML text at the current cursor position.

Example

Inserts an HTML text at the current cursor position.

main()
{
  TEXT_EDIT1.insertHtml("<b>bold text</b><i>italic text</i>");
}

Assignment

textEdit