コード例 #1
0
        internal LanguageCompletionCommandHandler(IVsTextView textViewAdapter, ITextView textView, LanguageCompletionHandlerProvider provider)
        {
            m_textView = textView;
            m_provider = provider;

            // Add the command to the command chain
            textViewAdapter.AddCommandFilter(this, out m_nextCommandHandler);
        }
コード例 #2
0
        internal LanguageCompletionCommandHandler(IVsTextView textViewAdapter, ITextView textView, LanguageCompletionHandlerProvider provider)
        {
            this.m_textView = textView;
            this.m_provider = provider;

            //add the command to the command chain
            textViewAdapter.AddCommandFilter(this, out m_nextCommandHandler);
        }