EyeAuras Docs EyeAuras Docs
EyeAuras Docs EyeAuras Docs
DocFX + Singulink = ♥

Search Results for

    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();
    2025 © Xab3r. All rights reserved.