/// <summary> /// Stop Flashing the specified Window /// </summary> public static bool Stop(IntPtr handle) { return(TaskbarFlash.Flash(handle, Constants.FLASHW_STOP)); }
/// <summary> /// Flash the specified Window for the specified number of times /// </summary> public static bool Flash(IntPtr handle, uint count) { return(TaskbarFlash.Flash(handle, Constants.FLASHW_ALL, count)); }
/// <summary> /// Start Flashing the specified Window /// </summary> public static bool Start(IntPtr handle) { return(TaskbarFlash.Flash(handle, Constants.FLASHW_ALL)); }
/// <summary> /// Flash the specified Window until it comes in the foreground /// </summary> public static bool Flash(IntPtr handle) { return(TaskbarFlash.Flash(handle, Constants.FLASHW_ALL | Constants.FLASHW_TIMERNOFG)); }