FMX.Analytics.TCustomAnalytics.Options

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Options: TAppActivityOptions read FOptions write SetOptions;

C++

__property System::Analytics::TAppActivityOptions Options = {read=FOptions, write=SetOptions, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Analytics.pas
FMX.Analytics.hpp
FMX.Analytics TCustomAnalytics

Description

Set of activities that the component is tracking.

By the default, no option is selected.

Choose any combination of the following options:

Parameter Description

AppStart

Tracks when the analytics service is enabled and the user has provided consent for application activity tracking.

AppExit

Tracks when the analytics service is disabled. This typically occurs when an application is shut down or enters a background state.

ControlFocused

Tracks when a visual control receives focus.

WindowActivated

Tracks when a window or form is activated.

Exception

Tracks when the top-level exception handler of the framework receives an exception. This is typically an application crash.

Custom

You can define and custom events and fire the notification mechanism to record these events and data about them.

See Also