Xml.XMLIntf.IXMLNodeList.BeginUpdate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure BeginUpdate;

C++

virtual void __fastcall BeginUpdate() = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLNodeList

Description

Increments the value of UpdateCount.

Call BeginUpdate before making several changes to the nodes in the list (such as adding or removing several nodes). BeginUpdate increments the UpdateCount property, to keep track of the fact that the list is in the middle of an update. When the update is complete, call EndUpdate to decrement the UpdateCount property.

Every call to BeginUpdate should be matched by a call to EndUpdate, so that the UpdateCount property accurately reflects whether an update operation is underway.

See Also