AGS.Editor.ScriptEditor.scintilla_OnBeforeShowingAutoComplete C# (CSharp) Méthode

scintilla_OnBeforeShowingAutoComplete() private méthode

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