So I was looking for a macro to do it and found the following macro which I attached a toolbar icon to it:
'' Toggle the current row and go down one line
Sub ToggleOne()
Dim cmd As String = "Edit.ToggleOutliningExpansion"
Dim ts As TextSelection = DTE.ActiveDocument.Selection
DTE.ExecuteCommand(cmd)
ts.LineDown()
End Sub
No comments:
Post a Comment