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 |
m (Move page script moved page API GetScreenResolutions to API GetScreenResolutions without leaving a redirect) |
||
(One intermediate revision by one other user not shown) | |||
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 | |||
Latest revision as of 04:46, 15 August 2023
← WoW API < GetScreenResolutions
Returns a list of available screen resolutions
resolution1, resolution2, resolution3, ... = GetScreenResolutions()
Takes[edit]
- Nothing
Returns[edit]
- String resolutionN
- String representation of the Nth resolution