Compiler Error message with component TFrxReport from fast-report

Hello,
i use RAD Studio 11.0 and VCL AdvStringGrid 8.6.11.2
I get the following compiler error when a TAdvStringGrid component is placed on a form at the same time as a report component from fast-report (TfrxReport):
[dcc32 Fehler] Unit1.pas(46): E2010 incompatible Types: 'TfrxVAlign' und 'TCellVAlign'
code:
procedure TForm1.frxReport1EndDoc(Sender: TObject);
var
p: TfrxReportPage;
m: TfrxMemoView;
i: Integer;
begin
frxReport1.Preview.Lock;
for i := 0 to frxReport1.PreviewPages.Count - 1 do
begin
p := TfrxReportPage(frxReport1.PreviewPages.Page[i]);
m := TfrxMemoView.Create(p);
m.CreateUniqueName;
m.SetBounds(0, 0, (p.PaperWidth - p.RightMargin - p.LeftMargin) * fr01cm,
(p.PaperHeight - p.TopMargin - p.BottomMargin) * fr01cm);
m.Text := 'Muster';
m.Rotation := 45;
m.Font.Size := 50;
m.Font.Color := $00C8C8C8;
m.VAlign := vaCenter;
m.HAlign := haCenter;
frxReport1.PreviewPages.ModifyPage(i, p);
end;
frxReport1.Preview.UnLock;
end;

Please help

Greetings

Prefix vaCenter with its proper namespace, i.e. the unitname where the TfrxValign type is defined.

Thank you. I fixed it with your solution.
It´s working now.