Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

sp adaptive card extension base.baseadaptivecardextension.onafterpropertiesupdatedexternally

John Nguyen edited this page Aug 19, 2021 · 1 revision

Home > @microsoft/sp-adaptive-card-extension-base > BaseAdaptiveCardExtension > onAfterPropertiesUpdatedExternally

BaseAdaptiveCardExtension.onAfterPropertiesUpdatedExternally() method

This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.

Lifecycle method called after the Adaptive Card Extension's properties have been updated by a source other than the property pane (except for isolated Adaptive Card Extensions).

Signature:

/** @virtual */
onAfterPropertiesUpdatedExternally(prevProperties: TProperties): void;

Parameters

Parameter Type Description
prevProperties TProperties The Adaptive Card Extension properties before the update.

Returns:

void

Remarks

For isolated Adaptive Card Extensions, this lifecycle is invoked instead of onPropertyPaneFieldChanged.

Clone this wiki locally