using System; namespace WindowsDisplayAPI { /// /// Contains possible line drawing capabilities of a display device /// [Flags] public enum DisplayLineCapabilities { /// /// Device does not support lines. /// None = 0, /// /// Device can draw a poly line. /// PolyLine = 2, /// /// Device can draw a marker. /// Marker = 4, /// /// Device can draw multiple markers. /// PolyMarker = 8, /// /// Device can draw wide lines. /// Wide = 16, /// /// Device can draw styled lines. /// Styled = 32, /// /// Device can draw lines that are wide and styled. /// WideStyled = 64, /// /// Device can draw interiors. /// Interiors = 128 } }