SetWindowCollapsed2
Definition
-- @/=[C]:-1
function SetWindowCollapsed2(...)
Callers
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
end
function M.SetWindowCollapsed2(string_name, bool_collapsed, ImGuiCond_cond)
if ImGuiCond_cond == nil then ImGuiCond_cond = 0 end
if string_name == nil then log("E", "", "Parameter 'string_name' of function 'SetWindowCollapsed2' cannot be nil, as the c type is 'const char *'") ; return end
imgui.SetWindowCollapsed2(string_name, bool_collapsed, ImGuiCond_cond)
end