Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TileControlScrollMode Enum

Exposes members that specify a TileControl‘s scroll mode.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public enum TileControlScrollMode

#Members

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).

#Related API Members

The following properties accept/return TileControlScrollMode values:

#Remarks

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