Skip to content
Member Filters
Show Inherited
Show Protected
Show abstract
GR32🞂TCustomBitmap32🞂EndMeasuringMethodPublic

TCustomBitmap32.EndMeasuring

Concludes area change measurement and invokes the registered measuring callback procedure.

Declaration ​

pascal
procedure EndMeasuring;

Description ​

EndMeasuring exits measuring mode and invokes the callback provided in BeginMeasuring with the bounding rectangle of all changed areas.

Example ​

pascal
Bitmap.BeginMeasuring(OnAreaMeasured);
try
  // Perform drawing operations
finally
  Bitmap.EndMeasuring;
end;