System.Windows.Forms.TextBox.AutoCompleteListBox.HideListBox C# (CSharp) Method

HideListBox() public method

public HideListBox ( bool set_text ) : void
set_text bool
return void
			public void HideListBox (bool set_text)
			{
				if (set_text)
					owner.Text = owner.auto_complete_matches [HighlightedIndex];

				Capture = false;
				Hide ();
			}