I guess the source code in TeEngine.pas, line 5036
Code: Select all
if Assigned(FOnDrawLabel) then
FOnDrawLabel(Self,X,Y,tmpZ,tmpSt,tmpDraw);
Code: Select all
if Assigned(FOnDrawLabel) then
begin
tmpSt:=Format.Text;
FOnDrawLabel(Self,X,Y,tmpZ,tmpSt,tmpDraw);
if tmpDraw then
Format.Text := tmpSt;
end;