Home > comp > gb.form > stock > list 
  [3.0]
 fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
Stock.List (gb.form)
Syntax
STATIC PROPERTY READ List AS String[]
Returns a string array of all possible stock icon names.

This procedure will display all the stock icons in an IconView control. Each icon is sized to a 24x24 picture.

Examples

PRIVATE SUB DisplayIcons()
  DIM iconKey AS String
  DIM iconName AS String
  IconViewIcons.Clear()
  FOR EACH iconKey IN Stock.List
    iconName = "icon:/24/" & iconKey
    IconViewIcons.Add(iconKey, iconKey, Picture[iconName])
  NEXT
END