FMX.Types.TTabList.FindNextTabStop
Delphi
function FindNextTabStop(const Current: IControl; const MoveForward: Boolean; const Climb: Boolean): IControl;
C++
_di_IControl __fastcall FindNextTabStop(const _di_IControl Current, const bool MoveForward, const bool Climb);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | TTabList |
Description
Returns a IControl Object which represents the next tab stop in the TabList.
The first parameter is the current IControl Object where the TabList begins.
The second parameter represents the tab direction: true is forward and false is backwards.
If the third parameter is true, the tab direction will continue regardless of the Objects parent. If it is false, the TabList will advance only where the Objects have the same parent.