// Copyright (c) Dapplo and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; namespace GreenshotPlugin.Core.Enums { /// /// Flags for the MonitorFromRect / MonitorFromWindow "flags" field /// see MonitorFromRect function /// or see MonitorFromWindow function /// [Flags] public enum MonitorFrom : uint { /// /// Returns a handle to the display monitor that is nearest to the rectangle. /// DefaultToNearest = 0, /// /// Returns NULL. (why??) /// DefaultToNull = 1, /// /// Returns a handle to the primary display monitor. /// DefaultToPrimary = 2 } }