Gets a collection of PertChartItem objects that may be used as an item collection within an associated IPertChartView control.

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

Syntax

C#
public ObservableCollection<PertChartItem> GetPertChartItems(
	int maxIndentation,
	string startContent,
	string finishContent,
	string linkContent,
	string completedContentTemplate,
	string startingContentTemplate
)
Visual Basic (Declaration)
Public Function GetPertChartItems ( _
	maxIndentation As Integer, _
	startContent As String, _
	finishContent As String, _
	linkContent As String, _
	completedContentTemplate As String, _
	startingContentTemplate As String _
) As ObservableCollection(Of PertChartItem)

Parameters

maxIndentation
Type: System..::.Int32
The maximum indentation to consider.
startContent
Type: System..::.String
The content to be set on the start task event.
finishContent
Type: System..::.String
The content to be set on the finish task event.
linkContent
Type: System..::.String
The content to be set on automatically generated link tasks.
completedContentTemplate
Type: System..::.String
The string format to be used for setting the content of the completed task events. Available fields: {Content}.
startingContentTemplate
Type: System..::.String
The string format to be used for setting the content of the starting task events. Available fields: {Content}.

See Also