API:FMX.ListView.TPresentedListView.StopPullRefresh
Delphi
procedure StopPullRefresh; override;
C++
virtual void __fastcall StopPullRefresh();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.ListView.pas FMX.ListView.hpp |
FMX.ListView | TPresentedListView |
Description
is a boolean method. It should be called when the "pull to refresh" mode has been triggered to stop the spinning wheel.
FMX.ListView.TPresentedListView.StopPullRefresh inherits from FMX.ListView.TListViewBase.StopPullRefresh. All content below this line refers to FMX.ListView.TListViewBase.StopPullRefresh.
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.