View Single Post
07/01/21, 10:46 PM   #3
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2016
Posts: 409
I'm not able to check the list of functions to make sure, but I don't think such a function exists. But you could mimic such a function pretty easily.Paraphrased code:


Local styles ={}
for I=1, getnumstyles() do
Styles[getItemLinkItemId(getstyleitemlink(I))] = getStyle(I)
End
Function getitemlinkstyle(link)
Return styles [getItemLinkItemId]
End
  Reply With Quote