API:FMX.ListView.TListView.PullRefreshWait

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PullRefreshWait: Boolean read FPullRefreshWait write FPullRefreshWait default 0;

C++

__property PullRefreshWait = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.ListView.pas
FMX.ListView.hpp
FMX.ListView TListView

Description

Determines if the spinning wheel disappears automatically or not.

FMX.ListView.TListView.PullRefreshWait inherits from FMX.ListView.TListViewBase.PullRefreshWait. All content below this line refers to FMX.ListView.TListViewBase.PullRefreshWait.

Determines if the spinning wheel disappears automatically or not.

When set to True, the spinning wheel does not disappear automatically and you have to call the StopPullRefresh method after doing a refresh operation. If PullRefreshWait is set to False (default), then the spinning wheel disappears automatically shortly after triggering the effect. This option only works in native iOS controls and does not have effect otherwise.

Note: You must set the PullToRefresh property to True to use PullRefreshWait.

See Also