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

Search Results for

    Property Triggers

    Triggers

    Gets the trigger manager that determines when this aura should activate.

    Declaration
    IComplexAuraTrigger Triggers { get; }
    Property Value
    Type Description
    IComplexAuraTrigger
    Remarks

    Combines multiple triggers using logical operations to determine activation state.

    Examples
    // Check which triggers are currently active
    var activeTriggers = context.Triggers.Items
        .Where(t => t.IsActive == true)
        .ToList();
    2025 © Xab3r. All rights reserved.