OdessaGUIProject.Windows7Taskbar.SetProgressValue C# (CSharp) Method

SetProgressValue() public static method

Sets the progress value of the specified window's taskbar button.
public static SetProgressValue ( IntPtr hwnd, ulong current, ulong maximum ) : void
hwnd System.IntPtr The window handle.
current ulong The current value.
maximum ulong The maximum value.
return void
        public static void SetProgressValue(IntPtr hwnd, ulong current, ulong maximum)
        {
            if (Windows7OrGreater)
                TaskbarList.SetProgressValue(hwnd, current, maximum);
        }