namespace WindowsDisplayAPI.Native.DeviceContext { /// /// Contains possible values for the display fixed output /// public enum DisplayFixedOutput : uint { /// /// Default behavior /// Default = 0, /// /// Stretches the output to fit to the display /// Stretch = 1, /// /// Centers the output in the middle of the display /// Center = 2 } }