FMX.ListView.TListViewBase.PullRefreshWait

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PullRefreshWait: Boolean read FPullRefreshWait write FPullRefreshWait default False;

C++

__property bool PullRefreshWait = {read=FPullRefreshWait, write=FPullRefreshWait, default=0};

Properties

Type Visibility Source Unit Parent
property public
FMX.ListView.pas
FMX.ListView.hpp
FMX.ListView TListViewBase

Description

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