Skip to main content
A newer version of this page is available. .

TaskbarAssistant.FlashWindow(FlashFlags, Int32, Int32) Method

Flashes the parent window. It does not change the window’s active state.

Namespace: DevExpress.Utils.Taskbar

Assembly: DevExpress.Utils.v19.1.dll

Declaration

public bool FlashWindow(
    FlashFlags opt,
    int count,
    int timeout
)

Parameters

Name Type Description
opt DevExpress.Utils.Taskbar.FlashFlags

A FlashFlags enumeration value that specifies the flash status (flash the window caption, flash the taskbar button, flash continuously until the window comes to the foreground, etc.). The enumeration supports bitwise operations, you can enable multiple flags.

count Int32

An integer value that specifies the number of flashes.

timeout Int32

An integer value that specifies the flash rate, in milliseconds. 0 to use the default cursor blink rate.

Returns

Type Description
Boolean

true, if the window caption was drawn as active before the call; otherwise, false

Remarks

This method supports the Windows API’s FlashWindowEx function.

See Also