void Completion_BeforeShowingCompletionList(BeforeShowingCompletionListEventArgs e)
 {
     if (!Completion.CanShowForPrefix(this.Text))
     {
         e.Cancel = true;
     }
 }
Beispiel #2
0
 void Completion_BeforeShowingCompletionList(BeforeShowingCompletionListEventArgs e)
 {
     if (!Completion.CanShowForPrefix(this.Text))
     {
         e.Cancel = true;
     }
 }