ProjectDataSet.TaskRow.TASK_NOTES Property
Text value of user-entered notes for a task.
Namespace: WebSvcProject
Assembly: ProjectServerWebServices (in ProjectServerWebServices.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 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 and Published databases. 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. |