Checkbox.fontstyle read/write property


Get or set the Checkbox font style, a table value that contains the following keys/values :

  • "italic" : set to true if the font is in italic.
  • "underline" : set to true if the font is underlined.
  • "strike" : set to true if the font is striked.
  • "thin" : set to true if the font is thin.
  • "bold" : set to true if the font is bold.
  • "heavy" : set to true if the font is heavy.

Example

local ui = require "ui" -- create a simple Window local win = ui.Window("Checkbox.fontstyle sample", 320, 200) local checkbox = ui.Checkbox(win, "LuaRT", 100, 90) -- create a combobox local cb = ui.Combobox(win, { "bold", "italic", "underline", "heavy", "thin" }, 94, 30) -- change checkbox.fontstyle upon selection function cb:onSelect(item) checkbox.fontstyle = { [item.text] = true } end checkbox.font = "Times New Roman" checkbox.fontsize = 24 win:show() -- update the user interface until the user closes the Window repeat ui.update() until not win.visible