AGS.Editor.ScintillaWrapper.scintillaControl1_DwellEnd C# (CSharp) Method

scintillaControl1_DwellEnd() private method

private scintillaControl1_DwellEnd ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void scintillaControl1_DwellEnd(object sender, EventArgs e)
        {
            if (_dwellCalltipVisible)
            {
                scintillaControl1.CallTipCancel();
                _dwellCalltipVisible = false;
            }
        }
ScintillaWrapper