AGS.Plugin.Lua.LuaScriptEditPane.ShowAutoComplete C# (CSharp) Метод

ShowAutoComplete() приватный Метод

private ShowAutoComplete ( int charsTyped, string autoCompleteList ) : void
charsTyped int
autoCompleteList string
Результат void
        private void ShowAutoComplete(int charsTyped, string autoCompleteList)
        {
            if (autoCompleteList.Length > 0)
            {
                scintillaWrapper.Styles[0x20].Font = autoCompleteFont;
                scintillaWrapper.AutoComplete.Show(charsTyped, autoCompleteList);
                scintillaWrapper.Styles[0x20].Font = codeFont;
            }
        }