This topic shows how to program
an add-in to have SOLIDWORKS PDM Professional notify your add-in
whenever a file is added, checked out, or checked in to a vault.
NOTE:
Because SOLIDWORKS PDM Professional cannot force a reload of
add-ins if they are written in .NET, all client machines must be restarted to ensure that the latest version of the add-in is used.
public void GetAddInInfo(ref EdmAddInInfo poInfo, IEdmVault5 poVault, IEdmCmdMgr5 poCmdMgr)
{
//Specify information to display in the add-in's Properties dialog box
poInfo.mbsAddInName = "My first add-in";
poInfo.mbsCompany = "The name of my company";
poInfo.mbsDescription = "This is a very nice add-in.";
poInfo.mlAddInVersion = 1;
//Specify the minimum required version of SolidWorks PDM Professional
poInfo.mlRequiredVersionMajor = 5;
poInfo.mlRequiredVersionMinor = 2;
//Register hooks
//Notify the add-in when a file has been added
poCmdMgr.AddHook(EdmCmdType.EdmCmd_PostAdd);
//Notify the add-in when a file has been checked out
poCmdMgr.AddHook(EdmCmdType.EdmCmd_PostLock);
//Notify the add-in when a file is about to be checked in
poCmdMgr.AddHook(EdmCmdType.EdmCmd_PreUnlock);
//Notify the add-in when a file has been checked in
poCmdMgr.AddHook(EdmCmdType.EdmCmd_PostUnlock);
}
Implement IEdmAddIn5::OnCmd as follows:
public void OnCmd(ref EdmCmd poCmd, ref EdmCmdData[] ppoData)
{
//Handle the hook
string name = null;
switch (poCmd.meCmdType)
{
case EdmCmdType.EdmCmd_PostAdd:
name = "PostAdd";
break;
case EdmCmdType.EdmCmd_PostLock:
name = "PostLock";
break;
case EdmCmdType.EdmCmd_PreUnlock:
name = "PreUnlock";
break;
case EdmCmdType.EdmCmd_PostUnlock:
name = "PostUnlock";
break;
default:
name = "?";
break;
}
//Check the upper and lower bounds of the array
string message = null;
message = "";
int index = 0;
index = ppoData.GetLowerBound();
int last = 0;
last = ppoData.GetUpperBound();
//Append the paths of all files to a message string
while (index <= last)
{
message = message + ((EdmCmdData)(ppoData.GetValue(index))).mbsStrData1 + "\r\n";
index = index + 1;
}
//Display a message to the user
message = "The following files were affected by a " + name + " hook:" + "\r\n" + message;
EdmVault5 vault = default(EdmVault5);
vault = (EdmVault5)poCmd.mpoVault;
vault.MsgBox(poCmd.mlParentWnd, message);
}
SOLIDWORKS PDM Professional calls OnCmd whenever one of the
hooks registered in GetAddInInfo triggers an event. You can tell which hook
triggered the call by inspecting
EdmCmd.meCmdType
that is returned in OnCmd's poCmd argument. meCmdType contains an
EdmCmdType constant
that indicates which hook triggered the call.
The second argument to OnCmd,
ppoData, contains an array of
EdmCmdData structures.
The array contains one structure for each file that is affected by the hook. The
contents of the structure members vary, depending on the hook. See EdmCmdData for a complete list
of members and their descriptions.
Click Build > Build Solution to build the add-in.
Add, check out, or check in
one or more vault files.
NOTE: OnCmd is not called during check-in if the file is not modified. During check-in of unmodified files, SOLIDWORKS PDM Professional triggers an "undo check-out" event. To handle this "undo check-out" event, register EdmCmdType.EdmCmd_PreUndoLock and EdmCmdType.EdmCmd_PostUndoLock hooks in your add-in's implementation of IEdmAddIn5::GetAddInInfo.