Events
Provides methods to call maker-defined Power Fx events that are configured in Power Apps Studio.
Available for
Canvas apps only
Syntax
context.events
Methods
event nodes in the manifest file are built as callable methods in the context.events
object.
Example
return (
<Button
onClick={() => {
context.events.OnCustomEvent();
}}
/>
);
Related articles
Power Apps component framework API reference
Power Apps component framework overview