ImGui.Style:getColor

From GiderosMobile
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Available since: Gideros 2020.9
Class: ImGui.Style

Description

Gets the color of an ImGui element.

(number), (number) = ImGui.Style:getColor(imguielement)

Parameters

imguielement: (String) the ImGui element target (see ImGui.CONST.Col)

Return values

Returns (number) color in hex format
Returns (number) alpha between 0 and 1

Example

local style = imgui:getStyle()
style:setColor(ImGui.Col_TabHovered, 0x54575b, 0.83)
local color, a = style:getColor(ImGui.Col_TabHovered)
print(color, a)