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


Flags that cause SOLIDWORKS PDM Professional to refresh elements of the user interface. Bitmask.

Syntax

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

Members

MemberDescription
EdmRefresh_FileList1 = Refresh the file listing in File Explorer; this value should be returned if you add, delete, rename, check out, check in, etc., a file and want the change to be immediately visible to the user
EdmRefresh_Hooks2 = Force reloading of hooks; this value is normally only returned if your add-in changes the number of registered hooks
EdmRefresh_Menu4 = Force an update of the Tools menu in the File Explorer; this value is normally only returned if your add-in changes the number of registered menu commands
EdmRefresh_Nothing0 = No refresh is required
EdmRefresh_Toolbar8 = Force an update of the toolbar in File Explorer; this value is normally only returned if your add-in changes the number of registered menu commands with toolbar buttons

Remarks

You can return a combination of these flags from your add-in's IEdmAddIn5::OnCmd via the EdmCmd struct to cause SOLIDWORKS PDM Professional to refresh certain parts of the user interface.

See Also