Hide Table of Contents
_IDocumentEvents_DestroyPreNotifyEventHandler Delegate (Interop.dsAutomation)

Pre-notifies an application when a document is about to close.

.NET Syntax

Visual Basic (Declaration) 
Public Delegate Sub _IDocumentEvents_DestroyPreNotifyEventHandler() 
C# 
public delegate void _IDocumentEvents_DestroyPreNotifyEventHandler()
JavaScript 
Event Not Supported
COM native C++ 
DestroyPreNotify();
C++ 
DestroyPreNotify();

Example

See the following code snippets:

  • COM native C++
  • C++

COM native C++

Header file

//Register the events for the IDocument class

BEGIN_SINK_MAP(CDsAddinDocument)

SINK_ENTRY_EX(IDC_DSAPPLICATIONEVENT, DIID__IDocumentEvents, dsDocument_DestroyNotify_id, OnDestroyNotify)
SINK_ENTRY_EX(IDC_DSAPPLICATIONEVENT, DIID__IDocumentEvents, dsDocument_DestroyPreNotify_id, OnDestroyPreNotify)
SINK_ENTRY_EX(IDC_DSAPPLICATIONEVENT, DIID__IDocumentEvents, dsDocument_FileSavePostNotify_id, OnFileSavePostNotify)
SINK_ENTRY_EX(IDC_DSAPPLICATIONEVENT, DIID__IDocumentEvents, dsDocument_ModifyNotify_id, OnModifyNotify)

END_SINK_MAP()


//Declare the callbacks for IDocument class
void __stdcall OnDestroyNotify();
void __stdcall OnDestroyPreNotify();
void __stdcall OnFileSavePostNotify();
void __stdcall OnModifyNotify();

Source file

void __stdcall CDsAddinDocument::OnDestroyPreNotify()

{

// TODO: Add your code here

}

C++

Header file

class DSADDINSAMPLE_EXPORT DsAddinDocument :

public dsDocumentEvents_c

{

public:

DsAddinDocument(dsDocument_c *dsDoc) : m_dsDoc(dsDoc) {

RegisterDocumentDestroyNotifyHook(m_dsDoc);
RegisterDocumentDestroyPreNotifyHook(m_dsDoc);

RegisterDocumentFileSavePostNotifyHook(m_dsDoc);

RegisterDocumentModifyNotifyHook(m_dsDoc);

}

~DsAddinDocument() {

UnRegisterDocumentDestroyNotifyHook(m_dsDoc);
UnRegisterDocumentDestroyPreNotifyHook(m_dsDoc);

UnRegisterDocumentFileSavePostNotifyHook(m_dsDoc);

UnRegisterDocumentModifyNotifyHook(m_dsDoc);

}

DeclareDocumentDestroyNotifyHook
DeclareDocumentDestroyPreNotifyHook

DeclareDocumentFileSavePostNotifyHook

DeclareDocumentModifyNotifyHook

dsDocument_c* getMyDoc() {return m_dsDoc;}

bool DestroyNotify();

bool DestroyPreNotify();

bool FileSavePostNotify();

bool ModifyNotify();

Source file

ImplementDocumentDestroyNotifyHook(DsAddinDocument)
ImplementDocumentDestroyPreNotifyHook(DsAddinDocument)

ImplementDocumentModifyNotifyHook(DsAddinDocument)

ImplementDocumentFileSavePostNotifyHook(DsAddinDocument)

bool DsAddinDocument::DestroyNotify()

{

//TODO: Add your code here

return true;

}

bool DsAddinDocument::DestroyPreNotify()

{

//TODO: Add your code here

return true;

}

bool DsAddinDocument::FileSavePostNotify()

{

//TODO: Add your code here

return true;

}

bool DsAddinDocument::ModifyNotify()

{

//TODO: Add your code here

return true;

}

Back to top

Remarks

If developing a C++ application, use dsDocument_DestroyPreNotify_id to register for this notification.

See Getting Started for more information about C++ interface add-in template callback functions.

Availability

DraftSight V1R4.0


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:   _IDocumentEvents_DestroyPreNotifyEventHandler Delegate (Interop.dsAutomation)
*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) 2019 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.