Skip to main content

TdxSpreadSheetContainer.BeginUpdate Method

Disables the floating container object repainting until the EndUpdate procedure is called.

Declaration

procedure BeginUpdate;

Remarks

Each time the container appearance settings are changed, the Spreadsheet control initiates repainting of the container to reflect these changes. If you need to change several appearance options at once, a seqence of painting updates occurs. To postpone these updates, enclose the code that modifies these options within the BeginUpdate/EndUpdate procedure blocks.

The BeginUpdate procedure postpones updates. To apply the changes made, invoke the EndUpdate procedure. Ensure that every call to BeginUpdate has a corresponding call to the EndUpdate procedure, even if an exception occurs.

To record a custom history action consisting of several modifications applied to the floating container, enclose the corresponding code between the BeginChanging and EndChanging procedure calls within a BeginUpdate/EndUpdate procedure block.

See Also