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