WoW:API GetCVarDefault: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Filled out the GetCVarDefault stub.)
m (Move page script moved page API GetCVarDefault to API GetCVarDefault without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{wowapi}} __NOTOC__
{{wowapi}} __NOTOC__
 
Returns the default value of a console variable.
GetCVarDefault allows you to get the default content of the variables defined in the config.wtf file (which is in the WTF directory).
 
  value = GetCVarDefault("cvarName")
  value = GetCVarDefault("cvarName")


== Parameters ==
== Arguments ==
=== Arguments ===
;cvarName: String ([[CVar]]) - Name of the console variable to query.
:;cvarName: String - see [[Config.wtf defaults]] for a list
 
=== Returns ===
:;value: String
 
 
== Example ==
 
  DEFAULT_CHAT_FRAME:AddMessage(GetCVarDefault("screenshotFormat"))


Outputs "jpeg" in the chat frame.
== Returns ==
;value: String - Default value of the console variable.


== Notes ==
== Notes ==
 
* Calling this function with an invalid variable name will cause an error.
* Calling GetCVarDefault with an invalid variable name will cause an error
 
* See [[Config.wtf defaults]]

Latest revision as of 04:45, 15 August 2023

WoW API < GetCVarDefault

Returns the default value of a console variable.

value = GetCVarDefault("cvarName")

Arguments[edit]

cvarName
String (CVar) - Name of the console variable to query.

Returns[edit]

value
String - Default value of the console variable.

Notes[edit]

  • Calling this function with an invalid variable name will cause an error.