ImageEn, unit iexBitmaps

TIECustomMultiBitmap.LockUpdate

TIECustomMultiBitmap.LockUpdate

Declaration

procedure LockUpdate();

Description

Increments the lock update counter. While LockUpdateCount is greater than zero all updating is disabled.

Use UnlockUpdate to unlock.

Example

// Disable updating
MyDBMultiBitmap.LockUpdate();
try
  ... Perform activities, e.g. appending many files to database
finally
  // Re-enable Updating and refresh view
  MyDBMultiBitmap.UnlockUpdate();
end;