Hide Table of Contents
AddMenuItem3 Method (ISldWorks)

Obsolete. Superseded by ISldWorks::AddMenuItem4.

.NET Syntax

Visual Basic (Declaration) 
Function AddMenuItem3( _
   ByVal DocumentType As System.Integer, _
   ByVal Cookie As System.Integer, _
   ByVal MenuItem As System.String, _
   ByVal Position As System.Integer, _
   ByVal MenuCallback As System.String, _
   ByVal MenuEnableMethod As System.String, _
   ByVal HintString As System.String, _
   ByVal BitmapFilePath As System.String _
) As System.Boolean
Visual Basic (Usage) 
Dim instance As ISldWorks
Dim DocumentType As System.Integer
Dim Cookie As System.Integer
Dim MenuItem As System.String
Dim Position As System.Integer
Dim MenuCallback As System.String
Dim MenuEnableMethod As System.String
Dim HintString As System.String
Dim BitmapFilePath As System.String
Dim value As System.Boolean
 
value = instance.AddMenuItem3(DocumentType, Cookie, MenuItem, Position, MenuCallback, MenuEnableMethod, HintString, BitmapFilePath)
C# 
System.bool AddMenuItem3( 
   System.int DocumentType,
   System.int Cookie,
   System.string MenuItem,
   System.int Position,
   System.string MenuCallback,
   System.string MenuEnableMethod,
   System.string HintString,
   System.string BitmapFilePath
)
C++/CLI 
System.bool AddMenuItem3( 
&   System.int DocumentType,
&   System.int Cookie,
&   System.String^ MenuItem,
&   System.int Position,
&   System.String^ MenuCallback,
&   System.String^ MenuEnableMethod,
&   System.String^ HintString,
&   System.String^ BitmapFilePath
) 

Parameters

DocumentType

Document type to add the menu item as defined by swDocumentTypes_e

Cookie

Cookie specified as defined in ISwAddin::ConnectToSW

MenuItem

Menu string ("menuItem@subMenuString@menuString"); SOLIDWORKS creates menu items only if they do not already exist

NOTE: Use the & symbol to include an accelerator key, e.g., "MyItem@&File" adds MyItem to the File menu with an accelerator key. To display the accelerator key, press the Alt key in SOLIDWORKS. The accelerator key is underlined.

Position

Position at which to add the new menu item

The first item is at position 0; if Position is 1, the new menu item is added to the bottom of the list; this argument specifies the position of the menu item in relation to its immediate parent menu

MenuCallback

Function to call when this menu item is selected

MenuEnableMethod

Optional function that controls the state of the menu item

If specified:

  • SOLIDWORKS calls this function before displaying the menu.

  • Display of the menu item is controlled by the return value of MenuEnableMethod.

If your method returns...

 

Then SOLIDWORKS...

0

Deselects and disables the menu item

1

Deselects and enables the menu item; this is the default menu state if no update function is specified

2

Selects and disables the menu item

3

Selects and enables the menu item

HintString

Text to show in the SOLIDWORKS status bar when the user moves their mouse over this menu item; if you specify HintString, then it must be preceded by a comma

BitmapFilePath

Path and filename of bitmap

Return Value

True if menu item and bitmap are added, false if not

Example

Adding a menu separator:

' Adds a menu separator to a menu (strings not shown as BSTR for clarity)

bRet = iSldWorks.AddMenuItem3(swDocNONE, iCookie, "@subMenuString@menuString", -1, "ExistingCallBackThatDoesNothing", "", "", "", "")

Remarks

For information about using this method with the ISwAddin object, see Using ISwAddin to Create a SOLIDWORKS Add-in.

The bitmap must be 16w x 16h x 256 colors. Transparency is RGB (192, 192, 192).

You can add a new menu to any one of the four SOLIDWORKS frames (main, part, assembly, or drawing). To do this, call this method with the appropriate argument in the DocumentType parameter. For example, if you want your menu to be available when a part document is active, then call this method and pass swDocPART as the first argument. After you have added your menu to the part frame, you do not need to do it again during the current SOLIDWORKS session. Once a part document is activated by the user, SOLIDWORKS automatically displays your menu item.

To add a menu separator:

  • leave the text for the menu item blank, so that the menu string for the MenuItem argument starts with the at-sign symbol ( @):

    "@subMenuString@menuString"

    NOTE: If you do not specify menuString, then the menu item appears on the Tools menu below the Xpress Products menu item.

  • specify an existing method for the MenuCallback argument. This method is never called, so its implementation can be empty.

  • specify empty strings for the MenuEnableMethod, HintString, and bitmapFilePath arguments.

 

See Also

Availability

SOLIDWORKS 2005 FCS, Revision Number 13.0


Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   AddMenuItem3 Method (ISldWorks)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2015 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.