Xml.XMLDoc.TXMLDocument.AfterClose

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterClose: TNotifyEvent read FAfterClose write FAfterClose;

C++

__property System::Classes::TNotifyEvent AfterClose = {read=FAfterClose, write=FAfterClose};

Properties

Type Visibility Source Unit Parent
event published
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLDocument

Description

Occurs after the XML document is closed.

Write an AfterClose event handler to take specific action after the XML document interfaces are released. For example, you can use an AfterClose event to update your user interface to indicate that the XML document is no longer available.

AfterClose is the last event to occur when the Active property is set to false.

See Also