windowsforms-devexpress-dot-xtraeditors-febd1fa5.md
Exposes members that specify a TileControl‘s scroll mode.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public enum TileControlScrollMode
Public Enum TileControlScrollMode
| Name | Description |
|---|---|
Default |
Default scrolling mode. For the TileControl, the Default value is equivalent to None , while the TileView interprets the Default value as ScrollBar.
|
| ScrollBar |
Sets a TileControl to display scroll bars when scrolling is enabled.
|
| ScrollButtons |
Sets a TileControl to display scroll buttons when scrolling is enabled.
|
| TouchScrollBar |
Displays a thin solid scroll bar painted right above the control’s client area.
|
| None |
Prevents any visual scrolling elements from being displayed. TileControl content scrolling is still available via mouse scroll (PC users) or sliding the control (touch-input devices users).
|
The following properties accept/return TileControlScrollMode values:
If a TileControl‘s size is not sufficient to display its entire content, scrolling is turned on. The TileControlScrollMode enumerator values passed to the TileControl.ScrollMode property specify which visual elements are used to support tile scrolling — either scroll bars or scroll buttons. The TileControlScrollMode.None value hides all scrolling visual elements, although an end user is still able to scroll the content with a mouse wheel. Finger scrolling on touch-input devices is also supported.
See Also