Compule error when setting WebPageControl.ActivePageIndex

The following code generates the error message 'No member is provided to access property'. Why?

procedure TForm8.WebFormCreate(Sender: TObject);
begin
WebPageControl1.ActivePageIndex := 0;
end;

The active page of the TWebPageControl is set via the property WebPageControl.TabIndex

Thanks! TabIndex does the job!