Share via


ScrollPresenter.VerticalScrollController Property

Definition

Gets or sets the IScrollController implementation that can drive the vertical scrolling of the ScrollPresenter.

public:
 property IScrollController ^ VerticalScrollController { IScrollController ^ get(); void set(IScrollController ^ value); };
IScrollController VerticalScrollController();

void VerticalScrollController(IScrollController value);
public IScrollController VerticalScrollController { get; set; }
var iScrollController = scrollPresenter.verticalScrollController;
scrollPresenter.verticalScrollController = iScrollController;
Public Property VerticalScrollController As IScrollController

Property Value

The IScrollController implementation that can drive the vertical scrolling of the ScrollPresenter. The default is null.

Remarks

The component that implements IScrollController is typically a UI widget like a ScrollBar the user can interact with to control the scrolling offset in one direction.

Applies to