WoW:API Region IsVisible

Revision as of 08:50, 19 January 2005 by WoWWiki>Kisk
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
IsVisible -Documentation by Kisk-

Gets the visible state of an object.

obj:IsVisible();

Arguments
nil

Returns
Boolean

Example
if (MyFrame:IsVisible()) then
    -- Frame is visible
elseif (not MyFrame:IsVisible()) then
    -- Frame is not visible
end
Result
The if function fires the corresponding statements based on the boolean value returned by MyFrame:IsVisible()

Description
Gets the visible state of an object.

Template:WoW API