FireDAC.Stan.Option.TFDEventAlerterOptions.AutoRefresh

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AutoRefresh: TFDAutoRefresh read FAutoRefresh write FAutoRefresh default afAlert;

C++

__property TFDAutoRefresh AutoRefresh = {read=FAutoRefresh, write=FAutoRefresh, default=1};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Stan.Option.pas
FireDAC.Stan.Option.hpp
FireDAC.Stan.Option TFDEventAlerterOptions

Description

Determines when the content of a change handler is refreshed.

Possible values:

  • afNone: Content is not refreshed automatically. Instead, you may check the value of IFDPhysChangeHandler.ContentModified to determine whether or not you need to refresh the content at a given time.
  • afAlert: Content is refreshed automatically right after receiving a change notification from the event alerter.
  • afTimeout: Content is refreshed automatically after receiving a change notification from the event alerter once the specified Timeout passes.

See Also