No, this isn't T-SQL specific, but SSMS specific. SSMS is not SQL Server, it is a client software connecting to (one or more) SQL Server instances. Using other client software or programming languages what you get in return pretty much depends on both driver used and client side handling of the drivers return "value", in PHP you may get an array, in C# a datatable or xml, etc. etc.
What happens on the lowest level is driven by the connector used (ODBC driver/OLEDB Provider, whatever). How that result comes over and is displayed is not in the hands of the SQL Server nor it's job, it only delivers to the ODBC/OLEDB layer and has no further action on the caller side.
It's a bit like asking whether you can choose the type of paper a printer will print on through the software and driver.
Bye, Olaf.