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

Represents an abstract class containing the methods needed to be implemented so one can populate a RadGanttView

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public abstract class GanttViewDataItemProvider : IDisposable

Inheritance: objectGanttViewDataItemProvider

Implements: IDisposable

Constructors

Initializes a new instance of the GanttViewDataItemProvider class.

C#
public GanttViewDataItemProvider(RadGanttViewElement gantt)
Parameters:ganttRadGanttViewElement

The gantt.

Properties

Gets the Gantt view.

C#
public RadGanttViewElement GanttView { get; }
Property Value:

The Gantt view.

Gets a value indicating whether this instance is suspended.

C#
public bool IsSuspended { get; }
Property Value:

true if this instance is suspended; otherwise, false.

Methods

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

C#
public virtual void Dispose()

Implements: IDisposable.Dispose()

Gets the items.

C#
public abstract IList<GanttViewDataItem> GetItems(GanttViewDataItem parent)
Parameters:parentGanttViewDataItemReturns:

IList<GanttViewDataItem>

Resets this instance.

C#
public virtual void Reset()

Resumes the update.

C#
public virtual void ResumeUpdate()

Sets the current.

C#
public virtual void SetCurrent(GanttViewDataItem item)
Parameters:itemGanttViewDataItem

The GanttView data item.

Suspends the update.

C#
public virtual void SuspendUpdate()