如何從宏讀取當前行(光標所在的位置)的文本?Visual Studio宏的當前行
我會使用這樣的功能:
Public Sub AddTextToChangeLogFile()
Dim textOnACurrentLine As ???
textOnACurrentLine = ???
If textOnACurrentLine.Text <> String.Empty Then
Dim sw As New StreamWriter("C:\###\Changes.txt", True)
sw.WriteLine(textOnACurrentLine + ". file: " + DTE.ActiveDocument.Name)
sw.Close()
End If
End Sub
好主意!工作正常 – Vadim 2010-05-14 15:39:10
這有副作用,離開選定的行。一個更好的選擇是使用na EditPoint – 2012-11-22 23:42:23