WoW:API MoneyInputFrame GetCopper: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (This is in fact a real API (at least now, dunno about before), so changed to mark as such)
mNo edit summary
Line 1: Line 1:
{{wowapi}} __NOTOC__
{{wowapi}}
 
Returns the amount of money entered in a MoneyInputFrame in copper pieces.
Returns the amount of money entered in a MoneyInputFrame in copper pieces.
local copper = MoneyInputFrame_GetCopper(moneyFrame)


copper = MoneyInputFrame_GetCopper(moneyFrame)
== Parameters ==
 
=== Arguments ===
== Arguments ==
* moneyFrame (frame) - The money frame, to calculate the copper pieces for.
:(moneyFrame)
 
:;moneyFrame : Frame - The money frame, to calculate the copper pieces for.


== Returns ==
== Returns ==
:;copper : Number - The amount of money in the specified money frame in copper pieces.
* copper (number) - The amount of money in the specified money frame in copper pieces. 0, if nothing was entered in the money frame, i.e. all editboxes are empty.
::: 0, if nothing was entered in the money frame (i.e. all editboxes are empty).

Revision as of 00:42, 11 February 2021

WoW API < MoneyInputFrame GetCopper

Returns the amount of money entered in a MoneyInputFrame in copper pieces.

local copper = MoneyInputFrame_GetCopper(moneyFrame)

Parameters

Arguments

  • moneyFrame (frame) - The money frame, to calculate the copper pieces for.

Returns

  • copper (number) - The amount of money in the specified money frame in copper pieces. 0, if nothing was entered in the money frame, i.e. all editboxes are empty.