ScrollPresenter.HorizontalScrollController Property
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.
Gets or sets the IScrollController
implementation that can drive the horizontal scrolling of the ScrollPresenter
.
public:
property IScrollController ^ HorizontalScrollController { IScrollController ^ get(); void set(IScrollController ^ value); };
IScrollController HorizontalScrollController();
void HorizontalScrollController(IScrollController value);
public IScrollController HorizontalScrollController { get; set; }
var iScrollController = scrollPresenter.horizontalScrollController;
scrollPresenter.horizontalScrollController = iScrollController;
Public Property HorizontalScrollController As IScrollController
Property Value
The IScrollController
implementation that can drive the horizontal 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.