Vcl.ExtCtrls.TCustomCategoryPanel.GetTabOrderList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetTabOrderList(List: TList); override;

C++

DYNAMIC void __fastcall GetTabOrderList(System::Classes::TList* List);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomCategoryPanel

Description

Builds a list of controls in tab order.

Call GetTabOrderList to construct a list of child controls in tab order.

GetTabOrderList iterates through the control's internal tab-order list, adding each of the child controls to List, including any controls contained in those controls. The result is a list of all the controls and their owned controls, in tab order.

The FindNextControl method calls GetTabOrderList to build a complete list of the controls that FindNextControl uses to locate the next control in the tab order.

If the category panel is collapsed, GetTabOrderList returns an empty list.