replaceSel method

int replaceSel(
  1. String text
)

Replaces the selection with text.

Implementation

int replaceSel(String text) {
  logInfo('replaceSel', () => 'text: <<$text>>');
  return sendMessage(EM_REPLACESEL, 0, text.toNativeUtf16().address);
}