ALFA.SystemInfo.GetExoAppDifficultySliderWindow C# (CSharp) Метод

GetExoAppDifficultySliderWindow() приватный статический Метод

Get the difficulty slider window from an Exo App window.
private static GetExoAppDifficultySliderWindow ( IntPtr ExoAppWindow ) : IntPtr
ExoAppWindow System.IntPtr Supplies the Exo App hwnd.
Результат System.IntPtr
        private static IntPtr GetExoAppDifficultySliderWindow(IntPtr ExoAppWindow)
        {
            IntPtr hwnd = GetDlgItem(ExoAppWindow, ExoCtrlIdDifficultyScrollBar);

            if (hwnd == null)
                throw new ApplicationException("Couldn't find DifficultySliderWindow");

            return hwnd;
        }