Creating Tab Sections
Creation Snippet
local TabSection = Window:CreateTabSection("Tab Section")
This is just a snippet, not all parameters are included
Parameters
Parameters for the Tab Section are not named and are passed through Lua's default parameter parsing.
As such, the number after the type of parameter will determine the index of the parameter in passing.
Name : string (1)
The title of the Tab Section that will be created.
Visible : boolean (2) NOT REQUIRED
Whether the title will be visible.
Useful for creating a section where uncategorised stuff can be placed. Eg, Home Tab/Dashboard.
However, please only use this on the first section as if done on a section between, it will just look like part of the previous section.
You can create a Tab Section that is not visible, add your dashboard there and followingly create normal Tab Sections.
Now your sidebar looks sleek, with everything categorised properly without excessive text!