WindUI

v1.6.41 Beta

Paragraph

Creating Paragraph and Editing it

Creating Paragraph

local Paragraph = Tab:Paragraph({
    Title = "Paragraph with Image, Thumbnail, Buttons",
    Desc = "Test Paragraph",
    Color = "Red",
    Image = "",
    ImageSize = 30,
    Thumbnail = "",
    ThumbnailSize = 80,
    Locked = false,
    Buttons = {
        {
            Icon = "bird",
            Title = "Button",
            Callback = function() print("1 Button") end,
        }
    }
})

Set Title

Paragraph:SetTitle("Title Example")

Set Description

Paragraph:SetDesc("DescriptionExample")

Destroy Element

Paragraph:Destroy()