FMX.Types.TTabList.FindNextTabStop
Delphi
function FindNextTabStop(const ACurrent: IControl; const AMoveForward: Boolean; const AClimb: Boolean): IControl;
C++
_di_IControl __fastcall FindNextTabStop(const _di_IControl ACurrent, const bool AMoveForward, const bool AClimb);
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.