private void _NickCompletion() { // perform completion string text = Text; int position = SelectionStart; NickCompleter.Complete(ref text, ref position, _Notebook.CurrentChatView); Text = text; SelectionStart = position; }
private void _NickCompletion() { // perform completion string text = Text; int position = Position; NickCompleter.Complete(ref text, ref position, ChatViewManager.CurrentChatView); Text = text; Position = position; }
void CompleteNick() { // perform completion string text = Text; int position = Position; NickCompleter.Complete(ref text, ref position, f_ChatViewManager.CurrentChat); Text = text; Position = position; }