TabbedView enhancements

The TabbedView feature has the following enhancements:

  • You can enable and disable TabbedView and MaximizeAllTabbedSheets via scripts, which means, you can enable and disable TabbedView and MaximizeAllTabbedSheets at runtime. In the previous version, you can only enable and disable TabbedView and MaximizeAllTabbedSheets in the IDE (at the design time).

    w_mdi.TabbedView = true                // Enable TabbedView
    w_mdi.MaximizeAllTabbedSheets = true   // Enable MaximizeAllTabbedSheets
    

    You can get and set the following properties via scripts: visible, height, width, x, and y. In the previous version, you can only get the value of these properties.

    mditbb_1.visible = false
    mditbb_1.x = 10
    mditbb_1.y = 10
    mditbb_1.width = 1000
    mditbb_1.height = 200
    
  • You can close a tab by clicking the scroll wheel or middle mouse button on it.