Copy tag data as text to clipboard

I just found

and I really welcome that function.
Over the years (I found threads from 2005, 2007, 2012) there have been requests for this function.
And now it is there.
You find it in the Edit menu as "Copy as text ..." which opens a dialogue in which you can enter a format string very similar to Convert>Tag-Filename.
Perhaps an entry in the right-click context menu of the file list would make the function even more accessible (hint, hint).
And while I am at it:
A checkbox to select all columns from the file list as output for the clipboard would be a nice enhancement ... plus perhaps an input box to define the field separator like dash, slash, underscore, tab character etc..

Just for future reference, I've added this with v3.27:

[2024-07-04] NEW: added 'Copy as Text...' to File List context menu. (#65135)

This is possible with $columnValues(x,y) added in Mp3tag v3.36-beta.4:

NEW: added scripting functions columnNames(x,y) and columnValues(x,y) to retrieve all names and values of File List columns.

You can also do things like:

$if($eql(%_counter%,1),$columnNames(,$char(9))$char(10),)$columnValues(,$char(9))

to copy a tab-separated textual representation of a File List column names and values.