ImageEn, unit iexFolderMView |
|
TImageEnFolderMView.LockUpdate
Declaration
procedure LockUpdate();
Description
Increments the
lock update counter. While
LockUpdateCount is greater than zero all component updating is disabled.
Use
UnlockUpdate to unlock.
// Disable updating of component
IEFolderMView1.LockUpdate();
try
... Perform activities, e.g. appending many files
finally
// Re-enable Updating and refresh view
IEFolderMView1.UnlockUpdate();
end;