Skip to main content

TdxSpreadSheetContainer.EndUpdate Method

Enables updates of the current floating container object after a BeginUpdate procedure call.

Declaration

procedure EndUpdate;

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 sequence 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