Why Font.Assign In SimpleGraph?
I have noticed that there's a sentence in TGraphObject.Create,
That calls...
To copy Simplegraph.Font in the recently created GraphObject...
Why not...
?
I'm very interested in this issue...
- Code: Select all
SyncFontToParent;
That calls...
- Code: Select all
Font.Assign(Owner.Font);
To copy Simplegraph.Font in the recently created GraphObject...
Why not...
- Code: Select all
Font:=owner.Font;
?
I'm very interested in this issue...