Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of icons for Visual Studio Add-ins

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?

like image 684
AngryHacker Avatar asked Jan 19 '23 08:01

AngryHacker


1 Answers

Here is the list:

http://www.kebabshopblues.co.uk/2007/01/04/visual-studio-2005-tools-for-office-commandbarbutton-faceid-property/

For instance, the integer 59 represents a smiley face.

like image 198
Jason Moore Avatar answered Jan 27 '23 22:01

Jason Moore