Enum ListBoxHandlerFlags
Specifies the behavior and appearance options for a list box control.
[Flags]
public enum ListBoxHandlerFlags
Fields
AlwaysShowVertScroll = 512Specifies that the vertical scroll bar is always displayed, regardless of the content size.
ExtendedSelection = 128Represents the extended selection mode for a control, allowing multiple items to be selected using keyboard or mouse input. The user can extend the selection by using SHIFT or CTRL keys together with the cursor movement keys or the mouse.
IntegralHeight = 2048Specifies whether the control adjusts its size to fully display items without partial clipping.
MultipleSelection = 64Represents a mode where multiple items can be selected simultaneously.
NoVertScrollBar = 1024Represents a style that disables the vertical scroll bar.
None = 0Represents a default or uninitialized state with no flags set.
ShowHorzScrollWhenNeeded = 1073741824Specifies that the horizontal scroll bar is displayed only when needed (Windows only).
SingleSelection = 32Represents a selection mode where only a single item can be selected at a time.
Remarks
This enumeration defines flags that can be combined using a bitwise OR operation to configure the selection mode, scrollbar visibility, and other display characteristics of a list box.