logoWindUI Shiny

BottomDragBarEnabled

Bottom drag handle visibility and behavior.

BottomDragBarEnabled

Controls the bottom drag handle visibility/behavior on the window.

CreateWindow Options

KeyTypeDefaultNotes
BottomDragBarEnabledbooleantrueMain option
BottomDragEnabledbooleantrueAlias; same behavior

BottomDragBarEnabled is internally treated as:

not (Config.BottomDragBarEnabled == false or Config.BottomDragEnabled == false)

Runtime Method

MethodSignatureDescription
SetBottomDragBarEnabledWindow:SetBottomDragBarEnabled(v)Enables/disables bottom drag bar at runtime

Example

local Window = WindUI:CreateWindow({
    Title = "Bottom Drag Demo",
    Folder = "WindUI-BottomDrag",
    BottomDragBarEnabled = true,
})

Window:SetBottomDragBarEnabled(false)
task.wait(0.5)
Window:SetBottomDragBarEnabled(true)

On this page