Performs actions needed after the BeginUpdate method is started.
Source position: imglist.pp line 318
protected procedure TCustomImageList.DoAfterUpdateStarted; virtual; |
DoAfterUpdateStarted is a virtual method in TCustomImageList called from the BeginUpdate method after the internal update counter has been incremented. It is called when the first update becomes active for the image list (the update counter is 1). Subsequent calls to BeginUpdate do not call the DoAfterUpdateStarted method until the update count returns to 1.
DoAfterUpdateStarted has an empty implementation in TCustomImageList, but can be overridden in descendent classes to perform any actions needed in the derived class.
Use DoBeforeUpdateEnded to perform actions needed in the EndUpdate method prior to decrementing the update counter and calling the Change method.
Use MarkAsChanged to set the internal flag which tracks modifications to the image list.
Added in LCL version 3.0.
|
Starts an update to the image list, and controls execution of the OnChange event. |
|
|
Finishes an update to the image list, and calls Change. |
|
|
Performs actions needed before the EndUpdate method is completed. |
|
|
Sets the value in the internal Changed flag to True. |
Lazarus Component Library (LCL) | Version 3.99-1b97b99691 (2024-09-01) | Home |