IWidgetProvider.OnActionInvoked(WidgetActionInvokedArgs) Method

Definition

Called when an action is invoked on a widget, such as the user clicking on a button.

public:
 void OnActionInvoked(WidgetActionInvokedArgs ^ actionInvokedArgs);
void OnActionInvoked(WidgetActionInvokedArgs const& actionInvokedArgs);
public void OnActionInvoked(WidgetActionInvokedArgs actionInvokedArgs);
function onActionInvoked(actionInvokedArgs)
Public Sub OnActionInvoked (actionInvokedArgs As WidgetActionInvokedArgs)

Parameters

actionInvokedArgs
WidgetActionInvokedArgs

A WidgetActionInvokedArgs object providing data for the callback.

Remarks

Objects passed into this callback method are only guaranteed to be valid within the callback. You should not store references to these objects because their behavior outside of the context of the callback is undefined.

Applies to