Skip to main content

Line-up Arguments

Moves Arguments to this method call up, so they all exist on the same line.

#Availability

Available from the context menu or via shortcuts:

  • when the edit cursor, or caret is on a method’s name.

#Notes

#Example

TestMethod("First Name", 
    "FamilyName", 
    25);
TestMethod("First Name", _
    "FamilyName", _
    25)

Result:

TestMethod("First Name", "FamilyName", 25);
TestMethod("First Name", "FamilyName", 25)

#Screenshot

rsLineUpArguments