Usuń obramowanie tcategorypanel

Jak można usunąć obramowanie z TCategoryPanel i TCategoryPanelGroup w XE3?

Próbowałem tego i nie zadziałało:

type
   TCategoryPanel =  class (Vcl.ExtCtrls.TCategoryPanel)
protected
   procedure  CreateParams ( var  Params: TCreateParams);  override ;
end ;

procedure  TCategoryPanel.CreateParams ( var  Params: TCreateParams);
begin
  Inherited ;
  Params.Style:= Params.Style  and  not  WS_BORDER;
end ;

questionAnswers(1)

yourAnswerToTheQuestion