Skip to main content
A newer version of this page is available. .

ASPxTreeList.EnablePagingGestures Property

Gets or sets a value specifying whether an end-user can switch pages with a swipe gesture.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v18.2.dll

Declaration

[DefaultValue(AutoBoolean.Auto)]
public AutoBoolean EnablePagingGestures { get; set; }

Property Value

Type Default Description
AutoBoolean **Auto**

True, if page switching by gestures is always allowed; False, if it is always prohibited; Auto - if it is allowed for touch devices only.

Available values:

Name Description
Auto

The value is determined automatically, based on the type of the end-user’s device: touch or non-touch.

True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Remarks

Use the EnablePagingGestures property to control the user’s ability to switch between pages with a swipe gesture. By default, this feature is enabled for touch devices only.

ASPxTreeList_EnablePagingGestures

Note

If paging gestures are enabled (the EnablePagingGestures property is set to True, or it is set to Auto and a touch device is used) pages change with the slide animation effect irrespective of the ASPxTreeList.EnablePagingCallbackAnimation property value.

See Also