This is very interesting problem.
I also tried to figure it out.
Currently there is NO WAY how to get your section or elevation orientation via global variables.
Only different hacks left to try to solve this.
I had one idea about it, but I'm not sure about the result.
Sections and elevations are using GDL script for their markers. These markers, as any GDL object, have globals SYMB_POS_X, SYMB_POS_Y, and SYMB_ROTANGLE.
Any GDL object can record data into a txt file (or it can have extension .gdl instead - in that case, this file passible to call as a macro). So, it is possible to have some txt files, where will be recorded elevation ID and name and also rotation.
Then cutout plant can read these parameters from txt file... But here I stuck. Because first - I'm not sure that elevation marker will record this data while you are drawing your section line. Text I/O will write data only if parameter or UI script is activated. For example, it is possible to create some button "send data" in section marker UI.
The second problem is - how the plant will know in which section it's shown currently?
I thought that closest command could be:
n = REQUEST ("HomeDB_info", ...)
But it will return the ID and name of floor plan, where plant was placed.
So currently there is no clear solution for that.