WindUI

v1.6.53 Beta

Section

Creating Section and Editing it

Creating Section

local Section = Tab:Section({ 
    Title = "Section",
    Box = false,
    FontWeight = "SemiBold",
    TextTransparency = 0.05,
    TextXAlignment = "Left",
    TextSize = 17, -- Default Size
    Opened = true,
})

Set Title

Section:SetTitle("New Title Example")

Destroy Element

Section:Destroy()

Now you can create elements inside this section. e.g.

Section:Button({ ... })