GE Lua Documentation

Press F to search!

GetWindowContentRegionMin

Definition


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

Callers

@/lua/ge/extensions/editor/api/gui.lua
  local yMax = clipRectMax.y - scrollOffsetV + lineHeight
  local xMin = clipRectMin.x + scrollOffsetH + imgui.GetWindowContentRegionMin().x
  local xMax = clipRectMax.x + scrollOffsetH + imgui.GetWindowContentRegionMax().x
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
function M.GetContentRegionMax() return imgui.GetContentRegionMax() end
function M.GetWindowContentRegionMin() return imgui.GetWindowContentRegionMin() end
function M.GetWindowContentRegionMax() return imgui.GetWindowContentRegionMax() end
function M.GetContentRegionMax() return imgui.GetContentRegionMax() end
function M.GetWindowContentRegionMin() return imgui.GetWindowContentRegionMin() end
function M.GetWindowContentRegionMax() return imgui.GetWindowContentRegionMax() end
@/lua/common/extensions/ui/imgui_custom_luaintf.lua
  function M.GetWindowContentRegionWidth()
    return imgui.GetWindowContentRegionMax().x - imgui.GetWindowContentRegionMin().x
  end