AGS.Editor.ScriptEditor.scintilla_OnBeforeShowingAutoComplete C# (CSharp) Method

scintilla_OnBeforeShowingAutoComplete() private method

private scintilla_OnBeforeShowingAutoComplete ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void scintilla_OnBeforeShowingAutoComplete(object sender, EventArgs e)
        {
            if (_editorTextModifiedSinceLastCopy)
            {
                UpdateScriptObjectWithLatestTextInWindow();
            }
            AutoComplete.ConstructCache(_script);
        }