Aura.Channel.World.Inventory.BankInventory.GetTabItems C# (CSharp) Méthode

GetTabItems() public méthode

Returns all items in specified tab. Returns an empty list if tab doesn't exist.
public GetTabItems ( string tabName ) : IList
tabName string
Résultat IList
		public IList<Item> GetTabItems(string tabName)
		{
			if (!this.Tabs.ContainsKey(tabName))
				return new List<Item>();

			return this.Tabs[tabName].GetItemList();
		}