Entry.fontstyle read/write property


Get or set the Entry 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("Entry.fontstyle sample", 320, 200) local entry = ui.Entry(win, "LuaRT", 100, 100) -- create a combobox local cb = ui.Combobox(win, { "bold", "italic", "underline", "heavy", "thin" }, 104, 30) cb.selected = cb.items[5] -- change entry.fontstyle upon selection function cb:onSelect(item) entry.fontstyle = { [item.text] = true } end entry.font = "Times New Roman" entry.fontsize = 24 win:show() -- update the user interface until the user closes the Window repeat ui.update() until not win.visible