TadvSmoothTabPager navigation

Can anyone give me some advice on how to iterate through the TabPage tabs of the SmoothTabPager to selectively disable one or all of the tabs?  I can easily set TabEnable to false at design time but haven't figured out how to access and set this property at runtime.

This is some sample code:


var
 i: integer;
begin
  for i := 1 to AdvSmoothTabPager1.AdvSmoothTabPageCount do
  begin
    AdvSmoothTabPager1.AdvSmoothTabPages[i - 1].TabEnabled := false;
  end;
end;