I am cooking up a quick Visual Studio 2008 add-in. One of the key commands is to place a menu entry under the Tools menu:
Command command = commands.AddNamedCommand2(_addInInstance, "MyAddin", "My Addin",
"Executes the command for MyAddin", true,
59,
ref contextGUIDS, (int)vsCommandStatus.vsCommandStatusSupported
+(int)vsCommandStatus.vsCommandStatusEnabled,
(int)vsCommandStyle.vsCommandStylePictAndText,
vsCommandControlType.vsCommandControlTypeButton);
One of the parameters is 59 (6th parameter), which refers to the icon ordinal that a plugin can use. Apparently there are hundreds available.
Is there a complete list of icons somewhere so that I can actually see what they look like?