Xml.XMLIntf.IXMLNode.ReadOnly

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ReadOnly: Boolean read GetReadOnly write SetReadOnly;

C++

__property bool ReadOnly = {read=GetReadOnly, write=SetReadOnly};

Properties

Type Visibility Source Unit Parent
property public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLNode

Description

Specifies whether the node can be modified.

ReadOnly specifies whether the value, child nodes, or attributes of the node can be changed. When ReadOnly is true, the node can't be modified. Read-only nodes raise an exception when an attempt is made to modify them.

When ReadOnly is false, the node can be modified.

See Also