WoW:API Region IsVisible
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.