Skip to content
On this page

Button

On this page

Button

Create Button

lua
local Button = Tab:Button({
    Title = "Button",
    Desc = "Button Desc",
    Callback = function()
        print("Clicked!")
    end,
})
1
2
3
4
5
6
7

Edit Button

  • SetTitle()
lua
Button:SetTitle("New Title!")
1
  • SetDesc()
lua
Button:SetDesc("New Description!")
1

Made with ❤️ by Footages