GE Lua Documentation

Press F to search!

TabItemButton

Definition


-- @/=[C]:-1
function TabItemButton(...)

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
function M.EndTabItem() imgui.EndTabItem() end
function M.TabItemButton(string_label, ImGuiTabItemFlags_flags)
  if ImGuiTabItemFlags_flags == nil then ImGuiTabItemFlags_flags = 0 end
  if string_label == nil then log("E", "", "Parameter 'string_label' of function 'TabItemButton' cannot be nil, as the c type is 'const char *'") ; return end
  return imgui.TabItemButton(string_label, ImGuiTabItemFlags_flags)
end