using SolidWorks.Interop.sldworks; namespace PdmSwPlugin.Main.EventHandler { public interface IDocEventHandler { int OnDocDestory(ModelDoc2 doc); /// /// 当前文档保存 /// /// /// /// int OnActiveDocSaved(int type, string fileName); int OnActiveDocCustomPropertyAdded(string propName, string Configuration, string NewValue, int valueType); int OnActiveDocCustomPropertyChanged(string propName, string Configuration, string oldValue, string NewValue, int valueType); void AfterDocDestroy(); } }