Inserts html at the last context location when in Design mode.
None.
First get a reference to the client-side editor:
var editor = $find('<%= Editor.ClientID %>');
Then use it to insert the html:
editor.InsertHtml("This text is <strong>bold</strong>.");