WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
WoWWiki
Advertisement

WoW API < AuctionFrameAuctions.duration

"I" iconThis member is implemented by FrameXML in [DEPRECATED http://wowprogramming.com/utils/xmlbrowser/live/AddOns/Blizzard_AuctionUI/Blizzard_AuctionUI.xml AddOns/Blizzard_AuctionUI/Blizzard_AuctionUI.xml].


Usage[]

 AuctionFrameAuctions.duration = time in minutes

Examples[]

 //set the short duration button to be checked and set the time
 AuctionsShortAuctionButton:SetChecked(1);
 AuctionFrameAuctions.duration = 120;
 
 //set the medium duration button to be checked and set the time
 AuctionsMediumAuctionButton:SetChecked(1);
 AuctionFrameAuctions.duration = 480;
 
 //set the long duration button to be checked and set the time
 AuctionsLongAuctionButton:SetChecked(1);
 AuctionFrameAuctions.duration = 1440;
Advertisement