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


Reasons for SOLIDWORKS PDM Professional to call IEdmAddIn5::OnCmd.

Syntax

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

Members

MemberDescription
EdmCmd_ActivateAPITab57 = Custom vault view tab is selected in File Explorer; sent only to add-ins that created a vault view tab in File Explorer
EdmCmd_CardButton37 = The user clicked either OK or a button whose command is enclosed in brackets ("<...>") in the file data card
EdmCmd_CardInput38 = The user modified a value in a file or folder data card
EdmCmd_CardListSrc39 = The add-in should provide a list that is used in a card
EdmCmd_DeSelectItem56 = Item is deselected File Explorer; sent only to add-ins that created a vault view tab in File Explorer
EdmCmd_InstallAddIn23 = The add-in is being installed
EdmCmd_Menu1 = User clicked a menu command or a toolbar button that was created by the add-in
EdmCmd_PostAdd12 = One or more files were added to the file vault
EdmCmd_PostAddFolder28 = One or more folders were added to the file vault
EdmCmd_PostBrowseFolder60 = A folder was browsed
EdmCmd_PostCopy20 = One or more files were copied to a new folder
EdmCmd_PostCopyFolder36 = One or more folders were copied to a new parent folder
EdmCmd_PostDelete14 = One or more files have been deleted
EdmCmd_PostDeleteFolder30 = One or more folders were deleted from the file vault
EdmCmd_PostGet26 = One or more files were copied from the archive to the local hard disk
EdmCmd_PostLabel47 = A label has been created
EdmCmd_PostLabelAddItem53 = A label has gotten a file or folder added to it
EdmCmd_PostLabelDelete49 = A label has been deleted
EdmCmd_PostLabelModify51 = A label has been renamed or gotten its comment updated
EdmCmd_PostLock4 = One or more files have been checked out
EdmCmd_PostMove22 = One or more files were moved to a new folder
EdmCmd_PostMoveFolder34 = One or more folders were moved to a new parent folder
EdmCmd_PostRename16 = One or more files were renamed
EdmCmd_PostRenameFolder32 = One or more folders were renamed
EdmCmd_PostShare18 = One or more files were shared to a new folder
EdmCmd_PostState10 = One or more files had their states changed
EdmCmd_PostUndoLock8 = One or more files had their locks removed without any changes sent to the file vault
EdmCmd_PostUnlock6 = One or more files have been checked in
EdmCmd_PreAdd11 = One or more files are about to be added to the file vault
EdmCmd_PreAddFolder27 = One or more folders are about to be added to the file vault
EdmCmd_PreBrowseFolder59 = A folder is about to be browsed
EdmCmd_PreCopy19 = One or more files are about to be copied to a new folder
EdmCmd_PreCopyFolder35 = One or more folders are about to be copied to a new parent folder
EdmCmd_PreDelete13 = One or more files are about to be deleted
EdmCmd_PreDeleteFolder29 = One or more folders are about to be deleted from the file vault
EdmCmd_PreExploreInit54 = A new instance of File Explorer is opening; handle this command in your add-in by calling IEdmCmdMgf6::AddVaultViewTab for each custom tab you want to add to the vault view in File Explorer
EdmCmd_PreGet25 = One or more files are about to be copied from the archive to the local hard disk
EdmCmd_PreLabel46 = A label is about to be created
EdmCmd_PreLabelAddItem52 = A label is about to get a file or folder added to it
EdmCmd_PreLabelDelete48 = A label is about to be deleted
EdmCmd_PreLabelModify50 = A label is about to be renamed or get its comment updated
EdmCmd_PreLock3 = One or more files are about to be checked out
EdmCmd_PreMove21 = One or more files are about to be moved to a new folder
EdmCmd_PreMoveFolder33 = One or more folders are about to be moved to a new parent folder
EdmCmd_PreRename15 = One or more files are about to be renamed
EdmCmd_PreRenameFolder31 = One or more folders are about to be renamed
EdmCmd_PreShare17 = One or more files are about to be shared to a new folder
EdmCmd_PreState9 = One or more files are about to have their states changed
EdmCmd_PreUndoLock7 = One or more files are about to get their locks removed without any changes sent to the file vault
EdmCmd_PreUnlock5 = One or more files are about to be checked in
EdmCmd_SelectItem55 = Item is selected in File Explorer; sent only to add-ins that created a vault view tab in File Explorer
EdmCmd_SerialNo2 = The add-in should generate a new serial number
EdmCmd_TaskDetails42 = Use this hook to add your own custom page to the task details dialog box in the task list
EdmCmd_TaskLaunch44 = The task is being launched; add your own user interface to permit user input
EdmCmd_TaskLaunchButton45 = OK or Cancel was clicked in the task launch dialog box
EdmCmd_TaskRun43 = This hook is called on the task server; you should perform the actual work there
EdmCmd_TaskSetup40 = Use this hook to add a task setup page to a task properties dialog box wizard
EdmCmd_TaskSetupButton41 = OK or Cancel was clicked in the task properties dialog box wizard
EdmCmd_UninstallAddIn24 = The add-in is about to be uninstalled
EdmCmd_UserTabDelete58 = Sent only to add-ins that created a vault view tab in File Explorer; called when File Explorer closes; opportunity for add-in to clean up tab-related items

See Also