The code below will enable "dwelling" and show the current mouse position as a calltip when the mouse is held in place for 0.5 seconds:
Jacob
scintilla.NativeInterface.SetMouseDwellTime(500);
private void scintillaScriptEditor_DwellStart(object sender, ScintillaMouseEventArgs e)
{
var pos = e.Position;
scintilla.CallTip.Show("This is position: " + pos, pos);
}
Thanks,Jacob