Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCloudStorage.OnChanged Event

In This Article

Notifies that the cloud storage component’s data provider or its authorization agent has changed.

#Declaration

Delphi
property OnChanged: TNotifyEvent read; write;

#Remarks

This event occurs every time the cloud storage creates, recreates, or destroys its data provider in response to the ProviderClassName or ProviderClass property value changes. Additionally, this event occurs every time the active data provider’s AuthorizationAgent property value changes (that is, when an authorization agent is associated with the data provider or disconnected from it). You can handle the OnChanged event to perform specific actions in response to changing the active data provider and/or authorization agent (such as performing the data provider and/or authorization agent configuration according to the target account’s type and settings).

Use the Sender parameter to access the cloud storage that raised the event. To access the storage’s all class-specific members within an OnChanged event handler, cast the parameter value to the TdxCloudStorage class.

See Also