ACAT.Lib.Core.Utility.Windows.SetForegroundWindowSizePercent C# (CSharp) Метод

SetForegroundWindowSizePercent() публичный статический Метод

Sets the width of the foreground window to a certain percentage of the display monitor width.
public static SetForegroundWindowSizePercent ( WindowPosition scannerPosition, int percent ) : void
scannerPosition WindowPosition where to position the window?
percent int the percent width
Результат void
        public static void SetForegroundWindowSizePercent(WindowPosition scannerPosition, int percent)
        {
            SetWindowSizePercent(User32Interop.GetForegroundWindow(), scannerPosition, percent);
        }