Class GanttScrollingService
Represents a class that provides properties and methods for scrolling the RadGanttView.
Inheritance
Namespace: Telerik.Windows.Controls.Gantt.Scrolling
Assembly: Telerik.Windows.Controls.GanttView.dll
Syntax
public sealed class GanttScrollingService : Object
Properties
ScrollSettings
The default ScrollSettings used from the GanttScrollingService for horizontal and vertical scrolling.
Declaration
public ScrollSettings ScrollSettings { get; set; }
Property Value
ScrollSettings
|
Methods
ResumeExecution()
Invokes the queued actions.
Declaration
public void ResumeExecution()
ScrollHorizontalTo(Double, GanttScrollArea)
Scrolls the passed GanttScrollArea horizontally with the specified offset (in pixels).
Declaration
public void ScrollHorizontalTo(double offset, GanttScrollArea ganttArea)
Parameters
System.Double
offset
The offset (in pixels). |
GanttScrollArea
ganttArea
The GanttScrollArea that will be scrolled. |
ScrollIntoView(Object)
Scrolls both GanttScrollAreas horizontally and vertically to the passed item using the default ScrollSettings.
Declaration
public void ScrollIntoView(object item)
Parameters
System.Object
item
The item to which will be scrolled. |
ScrollIntoView(Object, ScrollSettings)
Scrolls both GanttScrollAreas horizontally and vertically to the passed item using the passed ScrollSettings.
Declaration
public void ScrollIntoView(object item, ScrollSettings settings)
Parameters
System.Object
item
The item to which will be scrolled. |
ScrollSettings
settings
The ScrollSettings with which to scroll. |
ScrollToColumn(Int32)
Scrolls the GridViewArea to the specified by its index column.
Declaration
public void ScrollToColumn(int columnIndex)
Parameters
System.Int32
columnIndex
The column index to which to scroll. |
ScrollToColumn(ColumnDefinitionBase)
Scrolls the GridViewArea to the specified by its ColumnDefinitionBase column.
Declaration
public void ScrollToColumn(ColumnDefinitionBase columnDefinition)
Parameters
ColumnDefinitionBase
columnDefinition
The ColumnDefinitionBase to which to scroll. |
ScrollToDateTime(DateTime)
Scrolls the TimeLineArea to the specified System.DateTime.
Declaration
public void ScrollToDateTime(DateTime dateTime)
Parameters
System.DateTime
dateTime
The System.DateTime to which to scroll. |
ScrollToRow(Int32)
Scrolls vertically so that the specified by its index row is made visible.
Declaration
public void ScrollToRow(int rowIndex)
Parameters
System.Int32
rowIndex
The row index to scroll to. |
ScrollVerticalTo(Double)
Scrolls both GanttScrollAreas vertically from the initial scroll position with the specified offset (in pixels).
Declaration
public void ScrollVerticalTo(double offset)
Parameters
System.Double
offset
The offset (in pixels). |
ScrollVerticalWith(Double)
Scrolls both GanttScrollAreas vertically from the current scroll position with the specified offset (in pixels).
Declaration
public void ScrollVerticalWith(double offset)
Parameters
System.Double
offset
The offset (in pixels). |