Enum ScrollingOptions
Defines scrolling behaviour.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum ScrollingOptions
Fields
AllowSplitHorz = 32Allows user to split Edit control horizontally. This options works only if
SystemScrollBarsis off and control hasDockproperty set toDockStyle.Fill.AllowSplitVert = 64Allows user to split Edit control vertically. This options works only if
SystemScrollBarsis off and control hasDockproperty set toDockStyle.Fill.FlatScrollbars = 16Specifies that scroll bars appears in flat style.
HorzButtons = 128Specifies that scroll bars should display a collection of horizontal buttons at the left side of the horizontal scroll bar. This options works only if
SystemScrollBarsis off.None = 0Specifies that no flags are in effect.
ScrollByPixels = 512Specifies that scroll bars should calculate their size using pixels rather than characters.
ShowScrollHint = 2Specifies that control should display hint text in the popup window when user tracking the thumb.
SmoothScroll = 1Specifies that Edit control should reposition immediately while user tracking the thumb.
SystemScrollbars = 8Specifies that Edit control should use system scroll bars rather than scrollbar controls.
UseScrollDelta = 4Specifies that horizontal scrolling should scroll client area at the several characters rather than one character when caret is at the right border.
VertButtons = 256Specifies that scroll bars should display a collection of vertical buttons at the bottom side of vertical scroll bar. This options works only if
SystemScrollBarsis off.VerticalScrollBarAnnotations = 1024Specifies that annotations should be drawn over vertical scroll bar.