Search
TabControl Class
Remarks See Also
 






Represents a tab pages container.

Namespace: MindFusion.Common.UI
File: TabControl.js

 Syntax

JavaScript  Copy Code

// class
TabControl.prototype = {}

 Remarks

TabControl is also available as a React component.

 Example

The following code creates a new instance of the TabControl class.

JavaScript  Copy Code
// create a new instance of the TabControl control
var tabControl = new ui.TabControl(document.getElementById("tabcontrol"));
tabControl.width = tabControl.height = new ui.Unit(100, ui.UnitType.Percent);
tabControl.theme = "standard";

 Inheritance Hierarchy

MindFusion.Common.UI.Control
    MindFusion.Common.UI.ListContainer
        MindFusion.Common.UI.TabControl

 See Also