AGS.Editor.ScintillaWrapper.ShowAutoComplete C# (CSharp) Метод

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

private ShowAutoComplete ( int charsTyped, string autoCompleteList ) : void
charsTyped int
autoCompleteList string
Результат void
        private void ShowAutoComplete(int charsTyped, string autoCompleteList)
        {
            if (OnBeforeShowingAutoComplete != null)
            {
                OnBeforeShowingAutoComplete(this, null);
            }
            if (autoCompleteList.Length > 0)
            {
                scintillaControl1.StyleSetFont((int)Cpp.GlobalDefault, USER_FRIENDLY_FONT);
                scintillaControl1.StyleSetFontSize((int)Cpp.GlobalDefault, USER_FRIENDLY_FONT_SIZE);

                scintillaControl1.AutoCShow(charsTyped, autoCompleteList);

                scintillaControl1.StyleSetFont((int)Cpp.GlobalDefault, DEFAULT_FONT);
                scintillaControl1.StyleSetFontSize((int)Cpp.GlobalDefault, DEFAULT_FONT_SIZE);
            }
        }
ScintillaWrapper