ImageEn, unit iexBitmaps

TIECustomMultiBitmap.UnlockUpdate

TIECustomMultiBitmap.UnlockUpdate


Declaration

function UnlockUpdate(): integer;


Description

Decrement the lock update counter (use after calling LockUpdate).

If the lock count is zero, then Update is called to refresh the content and view.

Returns the lock count.


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;