namespace NvAPIWrapper.Native.Display { /// /// Contains possible AVI bar data that are available and should be used /// public enum InfoFrameVideoBarData : uint { /// /// No bar data present /// NotPresent = 0, /// /// Vertical bar /// Vertical, /// /// Horizontal bar /// Horizontal, /// /// Both sides have bars /// Both, /// /// Auto (Unspecified) /// Auto = 7 } }