Ich hab hier grade nur eine 21.2.5 im XE (11.0 aktuell nicht kompiliert) und da ist (noch) nichts zu sehen (stored, default und Co., sowohl normal oder als [Attribut]),
abgesehn von der schon erwähnten Action.
Delphi-Quellcode:
TControl = class(TComponent)
property Caption: TCaption read GetText write SetText stored IsCaptionStored;
TcxTabSheet = class(TCustomControl)
property Caption;
function TControl.IsCaptionStored: Boolean;
begin
Result := (ActionLink = nil) or not ActionLink.IsCaptionLinked;
end;