Files
Basalt/docs/objects/Container/removeFocusedObject.md
Robert Jelic bb1b1beb79 Basalt 1.7 Update
- New Objects (Flexbox, Graph, Treeview)
- Pluginsystem to add/remove functionality
- Reworked the entire Object system, instead of one big Object Class we have multiple classes: Object, VisualObject, ChangeableObject
- Instead of one big Frame Class we have multiple Frame Classes: BaseFrame, Frame, MovableFrame, ScrollableFrame, MonitorFrame, Flexbox
- Removed the Animation Object, and added a animation plugin instead
- Removed the Graphic Object and merged it's functionality with the image object
- Updated currently existing objects
2023-04-30 17:05:34 +02:00

720 B

removeFocusedObject

Description

Removes the focus from the currently focused object within the container. If no object is focused, this method has no effect.

Returns

  1. object The object in use

Usage

local main = basalt.createFrame()
local container = main:addFrame()
local inputField1 = container:addInputField()
    :setPosition(2, 2)
local inputField2 = container:addInputField()
    :setPosition(2, 4)

container:setFocusedObject(inputField1)

main:addButton()
    :setPosition(2, 6)
    :setText("Remove focus from input fields")
    :onClick(function()
        container:removeFocusedObject()
        basalt.debug("Focus removed from input fields!")
    end)

basalt.autoUpdate()