How to hide a tab in TTMSFNCPageControl

According to TTMSFNCTabset - TMS FNC UI Pack, there is a property called "Tabs" for the TTMSFNCPageControl. If you click on "Tabs" ( Tabs[index] - TMS FNC UI Pack), it indicates that there is a property called "Visible". So, I thought that was the way to way to hide a tab.

I dropped a TTMSFNCPageControl on a new project and added one line of code which I believe is what the documentation is saying should work. It gives me an error message. How do you hide a tab? Here is the test code:

//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "VCL.TMSFNCCustomControl"
#pragma link "VCL.TMSFNCGraphics"
#pragma link "VCL.TMSFNCGraphicsTypes"
#pragma link "VCL.TMSFNCPageControl"
#pragma link "VCL.TMSFNCTabSet"
#pragma link "VCL.TMSFNCTypes"
#pragma link "VCL.TMSFNCUtils"
#pragma resource "*.dfm"
TForm1 Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent
Owner)
: TForm(Owner)
{
TMSFNCPageControl1->Tabs[0].Visible = false; // [bcc64x Error] Unit1.cpp(23): 'Tabs' is a protected member of 'Vcl::Tmsfnctabset::TTMSFNCCustomTabSet'
}
//---------------------------------------------------------------------------

Tabs property is for TTMSFNCTabSet, you can access the Pages property for TTMSFNCPageControl