Vcl.ImgList.TCustomImageList.EndUpdate
Delphi
procedure EndUpdate;
C++
HIDESBASE void __fastcall EndUpdate(void);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Vcl.ImgList.pas Vcl.ImgList.hpp |
Vcl.ImgList | TCustomImageList |
Description
Enables the TCustomImageList to track when the image list has finished changing.
EndUpdate is called automatically by any property or method that changes the image list.
Call BeginUpdate before directly modifying the images in the list and EndUpdate after modifying them. When implementing properties or methods that change the list in descendants of TCustomImageList, call BeginUpdate before the changes are made, and EndUpdate when the changes are complete.