Hide Table of Contents

Fire Events When PropertyManager Page Opened and Canceled (C#)

This example shows how to get the SolidWorks command ID, PropertyManager title, and whether the user interface is active. Events are fired before the PropertyManager page is opened and when it is canceled.

//------------------------------------------
// Preconditions:
// 1. Specified model document exists.
// 2. Add a reference to SolidWorks.Interop.swcommands.dll
// 3. Open the Immediate window.
// 4. Clear Tools > Options > Stop VSTA debugger on macro
//    exit
, if it's selected.
// 5. Run the macro.
//
// Postconditions:
// 1. Specified file opened.
// 2. CommandOpenPreNotify event fired.
// 3. Fillet PropertyManager page opened.
// 4. Title of PropertyManager page, whether the
//    user interface is active, and whether the command ID
//    is a fillet, are printed to the Immediate window.
// 5. Interactively click the X on the Fillet PropertyManager
//    page to cancel it.
// 6. CommandCloseNotify event fired.
// 7. Interactively close the model document.
//--------------------------------------------

using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
using System.Diagnostics;
using SolidWorks.Interop.swcommands;
using System.Windows.Forms;

namespace GetRunningCommandInfoSldWorksCSharp.csproj
{
    
partial class SolidWorksMacro
    {

        
public SldWorks swAppSW;

        
public void Main()
        {

            ModelDoc2 swModel;
            ModelDocExtension swModelDocExt;
            
string modelName = null;
            
int errors = 0;
            
int warnings = 0;
            
int commandID = 0;
            
string pmpTitle = null;
            
bool isUIActive = false;


            
// Set up event
            swAppSW = (SldWorks)swApp;
            AttachEventHandlers();

            
// Open the model
            modelName = "C:\\Program Files\\SolidWorks Corp\\SolidWorks\\samples\\tutorial\\fillets\\knob.sldprt";
            swModel = (ModelDoc2)swApp.OpenDoc6(modelName, (
int)swDocumentTypes_e.swDocPART, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);
            swModelDocExt = (ModelDocExtension)swModel.Extension;

            
// Open the Fillet PropertyManager Page,
            // which causes the CommandOpenPreNotify event
            // to fire
            swModelDocExt.RunCommand((int)swCommands_e.swCommands_Fillet, "Fillet");

            
// Get the command ID if the command is a fillet,
            // get the PropertyManager page title if one is active,
            // and get whether the user interface is active
            swApp.GetRunningCommandInfo(out commandID, out pmpTitle, out isUIActive);

            
if (!string.IsNullOrEmpty(pmpTitle)) Debug.Print("Title of PropertyManager page: " + pmpTitle);
            
Debug.Print("Is user interface active? " + isUIActive);
            
if ((commandID == 9))
            {
                
Debug.Print("Command ID: " + "swCommands_Fillet");
            }
            
else
            {
                
Debug.Print("Command ID: " + "Not a fillet.");

            }
        }

        
public void AttachEventHandlers()
        {
            AttachSWEvents();
        }

        
public void AttachSWEvents()
        {
            swAppSW.CommandOpenPreNotify +=
this.swAppSW_CommandOpenPreNotify;
            swAppSW.CommandCloseNotify +=
this.swAppSW_CommandCloseNotify;
        }

        
private int swAppSW_CommandOpenPreNotify(int command, int userCommand)
        {
            
//Send message when the Fillet PropertyManager page is about to open
            if ((command == (int)swCommands_e.swCommands_Fillet)) MessageBox.Show("Fillet PropertyManager page is about to open.");
            
return 0;
        }
        
private int swAppSW_CommandCloseNotify(int command, int reason)
        {
            
//Send message when the Fillet PropertyManager page is canceled
            MessageBox.Show("Fillet PropertyManager page was canceled.");
            
return 0;
        }

        
/// <summary>
        /// The SldWorks swApp variable is pre-assigned for you.
        /// </summary>
        public
SldWorks swApp;


    }
}



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Fire Events When PropertyManager Page Opened and Canceled (C#)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:




x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2012 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.