New to Telerik UI for WPFStart a free 30-day trial

A service used to scroll the ScheduleView.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public interface IScrollingService

Methods

Scrolls the horizontal to the given offset.

C#
void ScrollHorizontal(double offsetX)
Parameters:offsetXdouble

The offset X.

Scrolls the start of the given occurrence to the start of the view.

C#
void ScrollIntoView(IOccurrence occurrence, bool scrollToStart)
Parameters:occurrenceIOccurrence

The occurrence.

scrollToStartbool

If set to true [scroll to start].

Scrolls the given occurrence into the view.

C#
void ScrollIntoView(IOccurrence occurrence)
Parameters:occurrenceIOccurrence

The occurrence.

Scrolls the start of the given slot to the start of the view.

C#
void ScrollIntoView(Slot slot, bool scrollToStart)
Parameters:slotSlot

The slot.

scrollToStartbool

If set to true [scroll to start].

Scrolls the given slot into the view.

C#
void ScrollIntoView(Slot slot)
Parameters:slotSlot

The slot.

Scrolls the vertical to the given offset.

C#
void ScrollVertical(double offsetY)
Parameters:offsetYdouble

The offset Y.