|
|
|
It often happens that you need to swap the operands of an assignment. For example, say that you have this set of assignments: |
and later in your source code you want to add a similar set of assignments, but with reversed operands: |
Here's a macro that lets you perform this operation automatically: |
Click here to copy the following block | Sub SwapOperands() DTE.ActiveDocument.Selection.StartOfLine _ (vsStartOfLineOptions.vsStartOfLineOptionsFirstText) DTE.ExecuteCommand("Edit.Find") DTE.Find.Action = vsFindAction.vsFindActionFind DTE.Find.FindWhat = "=" DTE.Find.Target = vsFindTarget.vsFindTargetCurrentDocument DTE.Find.MatchCase = False DTE.Find.MatchWholeWord = False DTE.Find.Backwards = False DTE.Find.MatchInHiddenText = False DTE.Find.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxLiteral DTE.Find.Execute() DTE.Windows.Item(Constants.vsWindowKindFindReplace).Close() DTE.ActiveDocument.Selection.Delete() DTE.ActiveDocument.Selection.StartOfLine _ (vsStartOfLineOptions.vsStartOfLineOptionsFirstText, True) DTE.ActiveDocument.Selection.Cut() DTE.ActiveDocument.Selection.EndOfLine() DTE.ActiveDocument.Selection.Text = "= " DTE.ActiveDocument.Selection.Paste() End Sub |
For best usability, you should store this macro in a macro module, then assign a convenient shortcut to it, for example (two keystrokes): Ctrl-Shift-V, Ctrl-Shift-V. You can do this assignment from the Keyboard page in the Tools-Options dialog box. To execute the macro, place the caret on the assignment statement and press the shortcut you assigned to it. |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|