# Task Notes

## Content



A task note is a written description associated with a task. These notes can be helpful in providing further information for each task. GanttView allows you to add special instructions while adding a task to your project by using [Notes](/componentone/api/wpf/online-ganttview/dotnet-api/C1.WPF.GanttView/C1.GanttView.Task.Notes.html) property of the <span data-popup-content="This class is available in \u003ca href=\u0022/componentone/api/wpf/online-ganttview/dotnet-api/C1.WPF.GanttView/C1.GanttView.Task.html\u0022\u003e.NET\u003c/a\u003e and \u003ca href=\u0022/componentone/api/wpf/online-ganttview/dotnet-api/C1.WPF.GanttView/C1.GanttView.Task.html\u0022\u003e.NET Framework\u003c/a\u003e." data-popup-title="Task" data-popup-theme="ui-tooltip-green qtip-green">Task</span> class.

The following image displays a task note added in GanttView.

![task notes](https://cdn.mescius.io/document-site-files/images/14a478dc-2b0f-437a-969b-b17e430e375e/images/notes_task.png)

By default, the Notes column does not appear in the grid. To make the task notes appear in the grid column at runtime, click the **Grid Columns** button in the toolbar and select **Notes** from the **Grid Columns** dialog box.

To add notes for your task, use the following code. This example uses the sample created in [Quick Start](/componentone/docs/wpf/online-ganttview/GanttView-QuickStart).

```csharp
//Add notes for a task
t.Notes= "This is an important task";
```