# Task Notes

## Content



GanttView allows you to add special instructions while adding a task to your project. Notes can be helpful in providing further information for each task. You can add notes for each task using the **Notes** property of the **Task** class.<br />To make the task notes appear in the grid column at run time, click the **Grid Columns** button in the toolbar and select **Notes** from the **Grid Columns** dialog box.

![Displays task duration in the GanttView.](https://cdn.mescius.io/document-site-files/images/7e40233e-00f6-4cd8-af13-0764ef4e9235/images/taskdurationganttview.png)

Use the below code to add notes for your task programmatically.

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