TaskList.DefaultCommentToken Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the default string for adding tasks to the Task List window.
public:
property System::String ^ DefaultCommentToken { System::String ^ get(); };
public:
property Platform::String ^ DefaultCommentToken { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(3)]
public string DefaultCommentToken { [System.Runtime.InteropServices.DispId(3)] get; }
[<System.Runtime.InteropServices.DispId(3)>]
[<get: System.Runtime.InteropServices.DispId(3)>]
member this.DefaultCommentToken : string
Public ReadOnly Property DefaultCommentToken As String
Property Value
The default string for adding tasks to the Task List window.
- Attributes
Examples
Sub DefaultCommentTokenExample()
' Before running, add a task to the Task List.
Dim win As Window = DTE.Windows.Item(Constants.vsWindowKindTaskList)
Dim TL As TaskList = win.Object
Dim TLItem As TaskItem = TL.TaskItems.Item(1)
Dim msg As String
' List properties of the Task Item.
msg = "TaskItem Category property value: " & TLItem.Category & vbCr
msg = msg & "TaskItem SubCategory property value: " & TLItem.SubCategory & vbCr
msg = msg & "TaskItem DefaultCommentToken property value: " & TL.DefaultCommentToken & vbCr
msg = msg & "TaskItem Checked property value: " & TLItem.Checked & vbCr
msg = msg & "TaskItem Displayed property value: " & TLItem.Displayed & vbCr
msg = msg & "TaskItem IsSettable property value: " & TLItem.IsSettable(vsTaskListColumn.vsTaskListColumnCheck) & vbCr
msg = msg & "TaskItem Priority property value: " & TLItem.Priority & vbCr
MsgBox(msg)
End Sub
Remarks
You can use comment tokens to add tasks to your Visual Studio integrated development environment (IDE). By entering that token name as a remark in your code, a task is automatically created and added to the Task List window.
The first character of a token must be the first alphanumeric character in the comment line. The token must be followed by at least one white space character or nonalphanumeric character.
For example, you might add this line:
'HACK: Need to optimize this loop.
If "HACK" is a valid token, the string is added to the Task List window as a new task item.
The default comment token, returned by this property, is "TODO" and cannot be changed.