Position of tab in a CGrid

Hello,

I am using a CGrid with a list of SingleCDockable windows.

When I add my dockable windows to my CGrid, I specify the same x and y coordonates in order to stack my windows. Everything works!

When I do that, the tab placement is at the bottom of the CGrid. I would like to see the tab position at the top as in the JTabbedPane. Is it possible?

Regards,

Fabien

The tabs can be placed at all sides, use this code to switch the position:

control.putProperty( StackDockStation.TAB_PLACEMENT, TabPlacement.TOP_OF_DOCKABLE );```

Thanks a lot! :slight_smile:

Thanks for posting this guys! Much appreciated :slight_smile: