Hi
I think there is a bug in TALDynamicControl.
Seems that it just need to read the FTagFloat field because the SetFloat procedure alters the fTag field. See:
property TagFloat: Double read GetTagFloat write SetTagFloat; // [TComponent:published] property TagFloat: Single read FTagFloat write FTagFloat;
procedure TALDynamicControl.SetTagFloat(const AValue: Double);
begin
ALMove(AValue, FTag, SizeOf(Double));
end;
Hi
I think there is a bug in TALDynamicControl.
Seems that it just need to read the FTagFloat field because the SetFloat procedure alters the fTag field. See: