Creates and inserts a partial copy of the specified task item considering its remaining work effort into the managed hierarchy, and updates the finish date and time of the original task item to its completion point. Used as preparation for rescheduling the remaining work effort of a task item.

Namespace:  DlhSoft.Windows.Controls
Assembly:  DlhSoft.ProjectData.GanttChart.LightWPF.Controls (in DlhSoft.ProjectData.GanttChart.LightWPF.Controls.dll)

Syntax

C#
public GanttChartItem SplitRemainingWork(
	GanttChartItem item,
	string remainingSuffix,
	string completedSuffix
)
Visual Basic (Declaration)
Public Function SplitRemainingWork ( _
	item As GanttChartItem, _
	remainingSuffix As String, _
	completedSuffix As String _
) As GanttChartItem

Parameters

item
Type: DlhSoft.Windows.Controls..::.GanttChartItem
The item to split.
remainingSuffix
Type: System..::.String
The suffix to apply to the Content property value for the new remaining work item.
completedSuffix
Type: System..::.String
The suffix to apply to the Content property value for the original item.

Return Value

The new remaining work item that can be rescheduled as needed.

See Also