Uses of Class
io.keikai.ui.ToolbarButton
-
Packages that use ToolbarButton Package Description io.keikai.ui Defines UI Component class of Keikai Spreadsheet -
-
Uses of ToolbarButton in io.keikai.ui
Subclasses of ToolbarButton in io.keikai.ui Modifier and Type Class Description class
DropdownToolbarButton
A dropdown toolbar button for the Spreadsheet component that contains a list ofToolbarButton
.Methods in io.keikai.ui that return ToolbarButton Modifier and Type Method Description ToolbarButton
ToolbarButton.Builder. build()
Builds the toolbar button instance.ToolbarButton[]
DropdownToolbarButton. getItems()
Returns the items of the dropdown button.Methods in io.keikai.ui that return types with arguments of type ToolbarButton Modifier and Type Method Description List<ToolbarButton>
Spreadsheet. getToolbarButtons()
Returns all toolbar buttons (read only).Methods in io.keikai.ui with parameters of type ToolbarButton Modifier and Type Method Description void
Spreadsheet. addToolbarButton(int index, ToolbarButton btn)
Inserts the specified button at the specified position in the buttons list.boolean
Spreadsheet. addToolbarButton(ToolbarButton btn)
Adds toolbar button to the end of the buttons.static DropdownToolbarButton.Builder
DropdownToolbarButton.Builder. create(String key, ToolbarButton... items)
Creates the builder with the given key with a list ofToolbarButton
.DropdownToolbarButton.Builder
DropdownToolbarButton.Builder. items(ToolbarButton... items)
Sets the items to the dropdown button.boolean
Spreadsheet. removeToolbarButton(ToolbarButton btn)
Removes the first occurrence of the given button instance in the buttons list.Constructors in io.keikai.ui with parameters of type ToolbarButton Constructor Description Builder(String key, ToolbarButton... items)
-