ScrollSnapPointsAlignment Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines constants that specify options for snap point alignment relative to a viewport edge. Which edge depends on the orientation of the object where the alignment is applied.
public enum class ScrollSnapPointsAlignment
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.XamlContract, 327680)]
enum class ScrollSnapPointsAlignment
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.XamlContract), 327680)]
public enum ScrollSnapPointsAlignment
Public Enum ScrollSnapPointsAlignment
- Inheritance
-
ScrollSnapPointsAlignment
- Attributes
Fields
Name | Value | Description |
---|---|---|
Near | 0 | Use snap points grouped closer to the orientation edge. |
Center | 1 | Use snap points that are centered in the orientation. |
Far | 2 | Use snap points grouped farther from the orientation edge. |
Remarks
For a vertically oriented element, Near
is the top and Far
is the bottom. For a horizontally oriented element, Near
is left and Far
is right.
To learn more about the swipe gesture and panning, see the "Panning behaviors" section of Guidelines for panning.