Indent for Params
Brought to you by:
anthonysteele
Howdy,
The following feature would be a "nice to have" feature":
When mult. params are present in a mod. declaration, offer
the option to left align the 2nd and subsequent params with the
1st param. For example, here is a before & after (in terms of this
param indent feature):
Procedure TForm.ListViewOnSelectItem( Sender: TObject; Item:TListItem; Selected: Boolean);
Procedure TForm.ListViewOnSelectItem( Sender: TObject;
Item: TListItem;
Selected: Boolean);
NOTE: I'm fairly new to this wonderful utility - if the above ability is already present,
please do let me know how \ where to find it.
Thanks,
Note: it appears this request is "VERY" similar to the existing request#: 1016601
To be a bit clearer with example:
Before:
Procedure TForm.ListViewOnSelectItem( Sender: TObject; Item:TListItem; Selected: Boolean);
After:Procedure TForm.ListViewOnSelectItem( Sender: TObject;
{mult. spaces to align 'Item' to directly under 'Sender'} Item: TListItem;
{mult. spaces to align 'Selected' to directly under 'Sender'} Selected: Boolean);