// // System.Windows.Forms.DrawItemState.cs // // Author: // Jaak Simm (jaaksimm@firm.ee) // Dennis Hayes (dennish@raytek.com) // (C) 2002 Ximian, Inc. http://www.ximian.com // using System; namespace System.Windows.Forms { /// /// Specifies the state of an item that is being drawn. /// this enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values. /// [Flags] public enum DrawItemState : int { None = 0, Selected = 1, Grayed = 2, Disabled = 4, Checked = 8, Focus = 16, Default = 32, HotLight = 64, Inactive = 128, NoAccelerator = 256, NoFocusRect = 512, ComboBoxEdit = 1024, } }