API:LabelGetTextColor
Aus WARWiki
Keine Beschreibung verfügbar.
Nutzung
API:LabelGetTextColor()
Diese Funktion übernimmt keine Argumente.
Diese Funktion gibt keine Werte zurück.
Source Code
function LabelGetTextColor( windowName )
local state = WindowGetState( windowName )
if ( state ~= nil ) then
return state[ "LABEL_TEXTCOLOR_R" ], state[ "LABEL_TEXTCOLOR_G" ], state[ "LABEL_TEXTCOLOR_B" ]
else
return _LabelGetTextColor( windowName )
end
end