Difference between revisions of "ImGui.Style:getWindowMinSize"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Gets the ImGui global style window minimum size values.
 
Gets the ImGui global style window minimum size values.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number), (number) = ImGui.Style:getWindowMinSize()
 
(number), (number) = ImGui.Style:getWindowMinSize()
 
</source>
 
</source>
Line 14: Line 14:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local imgui = ImGui.new()
 
local imgui = ImGui.new()
 
stage:addChild(imgui)
 
stage:addChild(imgui)

Revision as of 15:28, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui.Style

Description

Gets the ImGui global style window minimum size values. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getWindowMinSize() </source>

Return values

Returns (number) the window width minimum size value
Returns (number) the window height minimum size value

Example

<syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui)

local style = imgui:getStyle() style:setWindowMinSize(128, 128) print(style:getWindowMinSize()) -- 128, 128 </source>