Exemplo n.º 1
0
        private static void InsertBlackLineBefore()
        {
            int        line, col;
            VSTextView textView = new VSTextView(VSTextView.ActiveTextView);

            textView.GetCursorPositon(out line, out col);
            textView.InsertText("\r\n", line, 0);
            textView.MoveCursorTo(line, textView.GetStartTextIndexOfCurrLine());
        }