Property OnEnterActions
OnEnterActions
Gets actions executed when the aura enters its active state.
Declaration
IComplexAuraAction OnEnterActions { get; }
Property Value
Type | Description |
---|---|
IComplexAuraAction |
Remarks
These actions run once when IsActive transitions from false to true.
Examples
// Remove disabled actions
var disabledActions = context.OnEnterActions.Items
.Where(a => !a.IsEnabled)
.ToList();