Skip to main content
A newer version of this page is available. .

GanttNode.ToString() Method

Returns a string that represents the current object.

Namespace: DevExpress.Xpf.Gantt

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

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