SOLIDWORKS PDM Professional API Help Send Feedback
EdmMenuFlags Enumeration
See Also  
EPDM.Interop.epdm Namespace : EdmMenuFlags Enumeration


Flags used by IEdmCmdMgr5::AddCmd when writing an add-in that supports menu commands. Bitmask

Syntax

Visual Basic 
Public Enum EdmMenuFlags 
   Inherits System.Enum
C# 
public enum EdmMenuFlags : System.Enum 
C++/CLI 
public enum class EdmMenuFlags : public System.Enum 

Members

MemberDescription
EdmMenu_Administration512 = The command is displayed in SOLIDWORKS PDM Professional Administration tool instead of the File Explorer
EdmMenu_ContextMenuItem1024 = The command is displayed in the file's context menu
EdmMenu_ContextMenuItemFolder2048 = The command is displayed in the folder's context menu
EdmMenu_HastItemToolbarButton8192 = The command has a button in the Item Explorer toolbar
EdmMenu_HasToolbarButton128 = The command has a button in the File Explorer toolbar; see IEdmCmdMgr5::AddToolbarImage
EdmMenu_ItemToolsMenu4096 = The command is displayed in the Item Explorer tools menu
EdmMenu_MustHaveSelection1 = The command is only available when the user has selected files or folders in the File Explorer file list
EdmMenu_NeverInContextMenu64 = The command should not be present in the right-click, context menu, only in the File Explorer Tools menu
EdmMenu_Nothing0 = Default behavior; no restrictions and no toolbar
EdmMenu_OnlyFiles2 = The command is not available for selections containing folders, only for files
EdmMenu_OnlyFolders4 = The command is not available for selections containing files, only for folders
EdmMenu_OnlyInContextMenu32 = The command should only be present in the right-click, context menu, not in the File Explorer Tools menu
EdmMenu_OnlyMultipleSelection16 = The command is only available for multiple selections, not for single files or folders
EdmMenu_OnlySingleSelection8 = The command is only available if only one file or folder has been selected, not for multiple selections
EdmMenu_OwnerDrawToolbarButton256 = The command uses custom drawing of its toolbar button by implementing IEdmAddInDrawButton5
EdmMenu_ShowInMenuBarAction16384 = The command is displayed in the Action menu in the File Explorer toolbar
EdmMenu_ShowInMenuBarDisplay65536 = The command is displayed in the Display menu in the File Explorer toolbar
EdmMenu_ShowInMenuBarModify32768 = The command is displayed in the Modify menu in the File Explorer toolbar
EdmMenu_ShowInMenuBarTools131072 = The command is displayed in the Tools menu in the File Explorer toolbar

Remarks

The flags specify various properties for your command.

See Also