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


Flags used in IEdmFile5::UnlockFile to control the behavior of the check-in operation. Bitmask.

Syntax

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

Members

MemberDescription
EdmUnlock_FailOnRegenerationNeed16 = Fail if the file needs to be regenerated in the CAD program 

NOTE: Only files resaved in SOLIDWORKS 2009 or later can trigger this flag 
EdmUnlock_ForceUnlock256 = Unlock the file even if it is not modified
EdmUnlock_IgnoreCorruptFile4 = Ignore files with file formats unrecognized by SOLIDWORKS PDM Professional; without this flag, SOLIDWORKS PDM Professional returns E_EDM_INVALID_FILE if it encounters a corrupt file or a file containing a newer format than SOLIDWORKS PDM Professional can handle
EdmUnlock_IgnoreReferences128 = Silently unlock parent files without their references
EdmUnlock_IgnoreRefsNotLockedByCaller32 = Ignore references not locked by caller
EdmUnlock_IgnoreRefsOutsideVault8 = Ignore references to files outside the vault
EdmUnlock_KeepLocked1 = Keep the file checked out after creating the new version in the archive
EdmUnlock_OverwriteLatestVersion64 = Do not create a new version; overwrite the last version of the file with new changes
EdmUnlock_RemoveLocalCopy2 = Remove the local copy of the file from the hard disk after the file has been checked in
EdmUnlock_Simple0 = Check in the file using default behavior

See Also