ScrollContentPresenter.CanHorizontallyScroll Property

Definition

Gets or sets a value that indicates whether scrolling on the horizontal axis is possible.

public:
 property bool CanHorizontallyScroll { bool get(); void set(bool value); };
bool CanHorizontallyScroll();

void CanHorizontallyScroll(bool value);
public bool CanHorizontallyScroll { get; set; }
var boolean = scrollContentPresenter.canHorizontallyScroll;
scrollContentPresenter.canHorizontallyScroll = boolean;
Public Property CanHorizontallyScroll As Boolean

Property Value

Boolean

bool

true if scrolling is possible; otherwise, false.

Remarks

Note

This property is not intended to be set in XAML. You can set the panel's Orientation property in XAML and optionally change the ScrollViewer.HorizontalScrollBarVisibility or ScrollViewer.VerticalScrollBarVisibility to change how scrolling works. This property can be changed in code. In some cases you will need to use VisualTreeHelper to access the panel. For example, when used in an ItemsPanel, there's no property that provides access to a ScrollContentPresenter within the panel.

Applies to