WoW:API GetScreenResolutions: Difference between revisions
Jump to navigation
Jump to search
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
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{wowapi}}__NOTOC__ | |||
Returns a list of available screen resolutions | |||
resolution1, resolution2, resolution3, ... = GetScreenResolutions() | |||
===Takes=== | |||
: Nothing | |||
===Returns=== | |||
: String resolutionN | |||
:: String representation of the Nth resolution | |||
== | ===Example=== | ||
<dd> | |||
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 | |||
Revision as of 01:10, 5 September 2006
← WoW API < GetScreenResolutions
Returns a list of available screen resolutions
resolution1, resolution2, resolution3, ... = GetScreenResolutions()
Takes
- Nothing
Returns
- String resolutionN
- String representation of the Nth resolution