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

Represents a class that provides properties and methods for scrolling the RadGanttView.

Definition

Namespace:Telerik.Windows.Controls.Gantt.Scrolling

Assembly:Telerik.Windows.Controls.GanttView.dll

Syntax:

C#
public sealed class GanttScrollingService

Inheritance: objectGanttScrollingService

Properties

The default ScrollSettings used from the GanttScrollingService for horizontal and vertical scrolling.

C#
public ScrollSettings ScrollSettings { get; set; }

Methods

Invokes the queued actions.

C#
public void ResumeExecution()

Scrolls the passed GanttScrollArea horizontally with the specified offset (in pixels).

C#
public void ScrollHorizontalTo(double offset, GanttScrollArea ganttArea)
Parameters:offsetdouble

The offset (in pixels).

ganttAreaGanttScrollArea

The GanttScrollArea that will be scrolled.

Scrolls both GanttScrollAreas horizontally and vertically to the passed item using the passed ScrollSettings.

C#
public void ScrollIntoView(object item, ScrollSettings settings)
Parameters:itemobject

The item to which will be scrolled.

settingsScrollSettings

The ScrollSettings with which to scroll.

Scrolls both GanttScrollAreas horizontally and vertically to the passed item using the default ScrollSettings.

C#
public void ScrollIntoView(object item)
Parameters:itemobject

The item to which will be scrolled.

Scrolls the GridViewArea to the specified by its ColumnDefinitionBase column.

C#
public void ScrollToColumn(ColumnDefinitionBase columnDefinition)
Parameters:columnDefinitionColumnDefinitionBase

The ColumnDefinitionBase to which to scroll.

Scrolls the GridViewArea to the specified by its index column.

C#
public void ScrollToColumn(int columnIndex)
Parameters:columnIndexint

The column index to which to scroll.

Scrolls the TimeLineArea to the specified DateTime.

C#
public void ScrollToDateTime(DateTime dateTime)
Parameters:dateTimeDateTime

The DateTime to which to scroll.

Scrolls vertically so that the specified by its index row is made visible.

C#
public void ScrollToRow(int rowIndex)
Parameters:rowIndexint

The row index to scroll to.

Scrolls both GanttScrollAreas vertically from the initial scroll position with the specified offset (in pixels).

C#
public void ScrollVerticalTo(double offset)
Parameters:offsetdouble

The offset (in pixels).

Scrolls both GanttScrollAreas vertically from the current scroll position with the specified offset (in pixels).

C#
public void ScrollVerticalWith(double offset)
Parameters:offsetdouble

The offset (in pixels).