namespace NvAPIWrapper.Native.Display { /// /// Possible commands for info-frame operations /// public enum InfoFrameCommand : uint { /// /// Returns the fields in the info-frame with values set by the manufacturer (NVIDIA or OEM) /// GetDefault = 0, /// /// Sets the fields in the info-frame to auto, and info-frame to the default info-frame for use in a set. /// Reset, /// /// Get the current info-frame state. /// Get, /// /// Set the current info-frame state (flushed to the monitor), the values are one time and do not persist. /// Set, /// /// Get the override info-frame state, non-override fields will be set to value = AUTO, overridden fields will have the /// current override values. /// GetOverride, /// /// Set the override info-frame state, non-override fields will be set to value = AUTO, other values indicate override; /// persist across mode-set and reboot. /// SetOverride, /// /// Get properties associated with info-frame (each of the info-frame type will have properties). /// GetProperty, /// /// Set properties associated with info-frame. /// SetProperty } }