LogoObsidian

Tabboxes

Tabboxes can condense multiple groupboxes into a single groupbox.

Groupboxes and Tabboxes are the basic building block of each tab, you need it to group together UI elements. Any tabbox you create can be either a left or right tabbox.

Enable Auto Farm

Usage

You can create a Tabbox by calling the AddLeftTabbox or AddRightTabbox method on a Tab.

Arguments

local LeftTabBox = Tab:AddLeftTabbox("Left Tabbox")
local RightTabBox = Tab:AddRightTabbox("Right Tabbox")
Arg IdxArgument DescriptionTypeDefault
1Title of the tabboxstringnil
2Custom Icon or Icon name from lucide.devstringnil

Methods

You can use the following method to create a "groupbox" inside a tabbox:

Tabbox:AddTab("Tab Name")
Arg IdxArgument DescriptionTypeDefault
1Title of the tab in the tabboxstringnil

On this page