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;
            }
        }