WoW:API GetScreenResolutions: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
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:
<center>'''GetScreenResolutions''' ''-Documentation by [[user:Astinus|Astinus]]-''</center>
{{wowapi}}__NOTOC__
Returns a list of available screen resolutions
resolution1, resolution2, resolution3, ... = GetScreenResolutions()


Returns a list of available screen resolutions.
===Takes===
: Nothing


GetScreenResolutions();
===Returns===
: String resolutionN
:: String representation of the Nth resolution


== Parameters ==
===Example===
=== Arguments ===
<dd>
=== Returns ===
  local resolutions = {GetScreenResolutions()}
== Example ==
  for i,entry in resolutions do
  /script Resolution1, Resolution2 = GetScreenResolutions();
  DEFAULT_CHAT_FRAME:AddMessage(format('Resolution %u: %s', i, entry))
  /script DEFAULT_CHAT_FRAME:AddMessage(string.format("Resolution1 = %s", Resolution1));
  end
  /script DEFAULT_CHAT_FRAME:AddMessage(string.format("Resolution2 = %s", Resolution2));


====Result====
Output:
  Resolution1 = 800x600
  Resolution 1: 800x600
  Resolution2 = 1024x768
  Resolution 2: 1024x768
 
Resolution 3: 1280x1024
==Details==
 
----
{{WoW API}}

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

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