Vcl.ExtActns.TTabAction.SkipHiddenTabs

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SkipHiddenTabs :Boolean read FSkipHiddenTabs write FSkipHiddenTabs default True;

C++

__property bool SkipHiddenTabs = {read=FSkipHiddenTabs, write=FSkipHiddenTabs, default=1};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ExtActns.pas
Vcl.ExtActns.hpp
Vcl.ExtActns TTabAction

Description

Indicates whether the tab action should consider hidden tabbed pages when moving to the next page.

Set SkipHiddenTabs to true if you do not want the action to move to a tab page if its TabVisible property is false. Set SkipHiddenTabs to false if the tab action can move to and make visible a hidden page.

Note: SkipHiddenTabs only has an effect when the TabControl property identifies a TPageControl object. (TTabControl does not support hidden pages).

See Also