ARCed.Scintilla.AutoComplete.Show C# (CSharp) 메소드

Show() 개인적인 메소드

private Show ( int lengthEntered, string list, bool dontSplit ) : void
lengthEntered int
list string
dontSplit bool
리턴 void
        internal void Show(int lengthEntered, string list, bool dontSplit)
        {
            //	We may have the auto-detect of lengthEntered. In which case
            //	look for the last word character as the _start
            int le = lengthEntered;
            if (le < 0)
                le = this.GetLengthEntered();

            NativeScintilla.AutoCShow(le, list);

            //	Now it may have been that the auto-detect lengthEntered
            //	caused to AutoCShow call to fail becuase no words matched
            //	the letters we autodetected. In this case just show the
            //	list with a 0 lengthEntered to make sure it will show
            if (!this.IsActive && lengthEntered < 0)
                NativeScintilla.AutoCShow(0, list);
        }

Same methods

AutoComplete::Show ( ) : void
AutoComplete::Show ( IEnumerable list ) : void
AutoComplete::Show ( int lengthEntered ) : void
AutoComplete::Show ( int lengthEntered, IEnumerable list ) : void
AutoComplete::Show ( int lengthEntered, string list ) : void
AutoComplete::Show ( string list ) : void