API GetScreenResolutions
Talk0
98,472pages on
this wiki
this wiki
Returns a list of available screen resolutions
resolution1, resolution2, resolution3, ... = GetScreenResolutions()
Takes
Edit
- Nothing
Returns
Edit
- String resolutionN
- String representation of the Nth resolution
Example
Edit
local resolutions = {GetScreenResolutions()}
for i,entry in resolutions do
DEFAULT_CHAT_FRAME:AddMessage(format('Resolution %u: %s', i, entry))
end
Output:
Resolution 1: 800x600 Resolution 2: 1024x768 Resolution 3: 1280x1024