Show / Hide Table of Contents

Enum TWLater

Window events for the later parameter of window triggers. See WindowTriggers.this[].

[Flags]
public enum TWLater : ushort

Namespace: Au.Triggers
Assembly: Au.dll

Fields

Name Description
Active

Activated (became the foreground window).

Cloaked

The window has been cloaked (wnd.IsCloaked true).

Destroyed

Destroyed (closed).

Inactive

Deactivated (lose the foreground window status). This event also occurs when closing the window, if it was active; then the window possibly is already destroyed, and the handle is invalid.

Invisible

Became invisible (wnd.IsVisible false). This event also occurs when closing the window, if it was visible; then the window possibly is already destroyed, and the handle is invalid.

Minimized

The window has been minimized.

Name

Name changed. This event occurs only when the window is active. If name changed while inactive - when afterwards activated.

Uncloaked

The window has been uncloaked (wnd.IsCloaked false).

Unminimized

The window has been restored from the minimized state.

Visible

Became visible (wnd.IsVisible true). The window can be new or was temporarily hidden. The window is not actually visible if cloaked, minimized, etc.

Extension Methods

ExtMisc.HasAny<TWLater>(TWLater, TWLater)
ExtMisc.Has<TWLater>(TWLater, TWLater)
ExtMisc.SetFlag<TWLater>(ref TWLater, TWLater, bool)