ProjectDataSet.TaskRow.TASK_NOTES property

Contains the text value of user-entered notes for the task.

Namespace:  WebSvcProject
Assembly:  ProjectServerServices (in ProjectServerServices.dll)

Syntax

'Declaration
Public Property TASK_NOTES As String
    Get
    Set
'Usage
Dim instance As ProjectDataSet.TaskRow
Dim value As String

value = instance.TASK_NOTES

instance.TASK_NOTES = value
public string TASK_NOTES { get; set; }

Property value

Type: System.String

Remarks

Read-only. Task notes that are entered in Project Professional are stored as RTF (rich text format) binary data in the TASK_RTF_NOTES field of the MSP_TASKS table of the Draft database and the Published database. The first 255 characters are also stored in the TASK_NOTES field for programmatic access. You can use ReadProject or ReadProjectEntities to return a ProjectDataSet with the TASK_NOTES property. The Reporting database does not include task notes.

Note

If you add a newline character or format the task notes in Project Professional to use bullets, Project does not include the bulleted text or text following a newline in TASK_NOTES.

See also

Reference

ProjectDataSet.TaskRow class

ProjectDataSet.TaskRow members

WebSvcProject namespace