maui-devexpress-dot-maui-dot-collectionview-445ab74f.md
Lists values that specify how the collection view handles a full swipe across the row.
Namespace : DevExpress.Maui.CollectionView
Assembly : DevExpress.Maui.CollectionView.dll
NuGet Package : DevExpress.Maui.CollectionView
[Flags]
public enum FullSwipeMode
| Name | Description |
|---|---|
None |
Full swipe is disabled.
|
| Start |
A full swipe across the row from left to right performs the first action from the collection view’s StartSwipeItems collection.
|
| End |
A full swipe across the row from right to left performs the last action from the collection view’s EndSwipeItems collection.
|
| Both |
A full swipe across the row from left to right or from right to left performs the first or last action from the collection view’s StartSwipeItems or EndSwipeItems collection.
|
The following properties accept/return FullSwipeMode values:
YieldIfNotNull<FullSwipeMode>()
See Also