CDocument::OnCloseDocument

virtual void OnCloseDocument( );

Remarks

Called by the framework when the document is closed, typically as part of the File Close command. The default implementation of this function destroys all of the frames used for viewing the document, closes the view, cleans up the document's contents, and then calls the DeleteContents member function to delete the document’s data.

Override this function if you want to perform special cleanup processing when the framework closes a document. For example, if the document represents a record in a database, you may want to override this function to close the database. You should call the base class version of this function from your override.

CDocument OverviewClass MembersHierarchy Chart

See Also   CDocument::DeleteContents, CDocument::OnNewDocument, CDocument::OnOpenDocument