Xml.XMLDoc.TXMLDocument.Modified

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Modified: Boolean read GetModified;

C++

__property bool Modified = {read=GetModified, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLDocument

Description

Indicates whether the XML document has been modified.

Read Modified to determine whether the application has made any changes to the nodes in the XML document. When Modified is true, the value of the XML property may differ from the contents of the file specified by FileName. You can call the SaveToFile method to update the XML document file to reflect the changes.

Note: Modfied changes to false when you call the Refresh or SaveToFile method.

See Also