Property WindowTriggerArgs.Later
Overload
The "later" event, or 0 if it is the primary trigger (ActiveNew etc). See example.
public TWLater Later { get; }
Property Value
Examples
Note: the Triggers in examples is a field or property like readonly ActionTriggers Triggers = new();
.
Triggers.Window[TWEvent.ActiveOnce, "*- Notepad", later: TWLater.Active | TWLater.Inactive] = o => print.it(o.Later, o.Window);
Triggers.Run();