FMX.ListView.TListViewBase.StopPullRefresh
Delphi
procedure StopPullRefresh; virtual;
C++
virtual void __fastcall StopPullRefresh();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.ListView.pas FMX.ListView.hpp |
FMX.ListView | TListViewBase |
Description
StopPullRefresh is a boolean method. It should be called when the "pull to refresh" mode has been triggered to stop the spinning wheel.
StopPullRefresh can be set to
- True, as result the spinning wheel does not disappear automatically and StopPullRefresh method needs to be called after the refresh operation is done.
- False (default value), as result the spinning wheel disappears automatically shortly after triggering the effect.
Note: This works only in native IOS control and only when the PullRefreshWait property is set to True.