Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
No edit summary
Tag: WoW API docs
Yakehira (talk | contribs)
No edit summary
Tag: WoW API docs
Line 4: Line 4:
   
 
== Arguments ==
 
== Arguments ==
;slotIndex : Number - Index ranging from 1 to 80 ([http://wow.go-hero.net/framexml/15005/Blizzard_VoidStorageUI/Blizzard_VoidStorageUI.lua#9 VOID_STORAGE_MAX])
+
;slotIndex : {{api|t=t|number}} - Index ranging from 1 to 80 ([http://wow.go-hero.net/framexml/15005/Blizzard_VoidStorageUI/Blizzard_VoidStorageUI.lua#9 VOID_STORAGE_MAX]). The index starts from top to bottom first (vertically), then left to right (horizontally); This is similar to the Guild Bank frame
 
;isRightClick : {{api|t=t?|boolean}} - Whether the button was right-clicked
:: <b>Note:</b> The index starts from top to bottom first (vertically), then left to right (horizontally); This is similar to the Guild Bank frame
 
;isRightClick : Boolean - Whether the button was right-clicked
 
   
 
== Triggers events ==
 
== Triggers events ==
Line 14: Line 13:
 
* Left-click (false): Toggles the item between the specified button and the mouse cursor
 
* Left-click (false): Toggles the item between the specified button and the mouse cursor
 
* Right-click (true): Sets the item for withdrawal
 
* Right-click (true): Sets the item for withdrawal
  +
  +
== External links ==
  +
<!-- Please read https://wow.gamepedia.com/Wowpedia:External_links_policy before adding new links. -->
  +
{{Elinks-api}}

Revision as of 15:41, 27 February 2021

Clicks the specified Void Storage slot [1]

ClickVoidStorageSlot(slotIndex[, isRightClick])

Arguments

slotIndex
number - Index ranging from 1 to 80 (VOID_STORAGE_MAX). The index starts from top to bottom first (vertically), then left to right (horizontally); This is similar to the Guild Bank frame
isRightClick
boolean?Optional. Could be nil. - Whether the button was right-clicked

Triggers events

Details

  • Left-click (false): Toggles the item between the specified button and the mouse cursor
  • Right-click (true): Sets the item for withdrawal

External links