Share via


ItemsRepeaterScrollHost.HorizontalAnchorRatio Property

Definition

Determines the horizontal position of the ScrollViewer's anchor point with respect to the viewport. By default, the ScrollViewer selects an element as its CurrentAnchor by identifying the element in its viewport nearest to the anchor point.

This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

public:
 property double HorizontalAnchorRatio { double get(); void set(double value); };
double HorizontalAnchorRatio();

void HorizontalAnchorRatio(double value);
public double HorizontalAnchorRatio { get; set; }
Public Property HorizontalAnchorRatio As Double

Property Value

Double

double

A normalized value (0.0 to 1.0). The default is 0.0.

Remarks

A value of 0.0 represents the left-most point within the viewport. A value of 1.0 represents the right-most point within the viewport. A value of 0.5 represents the center-most point within the viewport.

When the value is 0.0 or 1.0, the ScrollViewer applies special behavior when the scroll position is at the start or end of the scrollable area.

Applies to

See also