Vcl.ComCtrls.TCustomListView.GetNextItem
Delphi
function GetNextItem(StartItem: TListItem;
Direction: TSearchDirection; States: TItemStates): TListItem;
C++
TListItem* __fastcall GetNextItem(TListItem* StartItem, TSearchDirection Direction, TItemStates States);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TCustomListView |
Description
Returns the next list item after the StartItem
in the specified Direction
.
Call GetNextItem to find the next list item after StartItem
in the direction given by the Direction
parameter. Only items in the state indicated by the States
parameter are considered.
See Also
- Vcl.ComCtrls.TCustomListView.DropTarget
- Vcl.ComCtrls.TCustomListView.GetNearestItem
- Vcl.ComCtrls.TCustomListView.ItemFocused
- Vcl.ComCtrls.TCustomListView.Selected
Code Examples