"insertHtmlAt"

Inserts an HTML text at the given position.

Synopsis

void insertHtmlAt(string text, int para, int pos);

Parameters

Parameter Description
text The text to be added.
para The X coordinate.
pos The Y coordinate.

Description

Inserts an HTML text at the given position.

Example

Inserts an HTML text at the given position.

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

Assignment

textEdit