Skip to main content

GanttNode.ToString() Method

Returns a string that represents the current object.

Namespace: DevExpress.Xpf.Gantt

Assembly: DevExpress.Xpf.Gantt.v23.2.dll

NuGet Package: DevExpress.Wpf.Gantt

Declaration

public override string ToString()

Returns

Type Description
String

A string that represents the current object.

Remarks

The code sample below demonstrates the default ToString method implementation:

public override string ToString() {
    return TaskKind.ToString() + " " + StartDate.ToString() + FinishDate.ToString();
}
See Also