LayoutFarm.SuggestionWindowMx.ClearItems C# (CSharp) Method

ClearItems() public method

public ClearItems ( ) : void
return void
        public void ClearItems()
        {
            this.listView.ClearItems();
        }

Usage Example

Esempio n. 1
0
 void sgBox_UserConfirmSelectedItem(object sender, EventArgs e)
 {
     if (_textbox.CurrentTextSpan != null)
     {
         _textbox.ReplaceCurrentTextRunContent(_currentLocalText.Length,
                                               (string)_sgBox.GetItem(_sgBox.SelectedIndex).Tag);
         //-------------------------------------
         //then hide suggestion list
         _sgBox.ClearItems();
         _sgBox.Hide();
         //--------------------------------------
     }
 }
All Usage Examples Of LayoutFarm.SuggestionWindowMx::ClearItems