_vstaskbitmap Enum
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.
Specifies options for a bitmap image associated with a task item.
public enum class _vstaskbitmap
public enum class _vstaskbitmap
enum _vstaskbitmap
public enum _vstaskbitmap
type _vstaskbitmap =
Public Enum _vstaskbitmap
- Inheritance
-
_vstaskbitmap
Fields
Name | Value | Description |
---|---|---|
BMP_USER | -5 | Profile of a human head, used to represent user-defined tasks in the task list. The top of the task list, above its first item, is set up to allow users to easily add their own tasks to the task list. |
BMP_SHORTCUT | -4 | A small curved arrow, used to represent shortcuts in the task list. Shortcuts are generated by the user right-clicking the editor window, and choosing Add Task List shortcut from the pop-up menu. Users should be encouraged to use shortcuts rather than bookmarks to mark positions in the editor window. |
BMP_COMMENT | -3 | A blue "/*", used to represent comments in the task list. |
BMP_SQUIGGLE | -2 | A vertical red wavy line used to represent Code Sense errors in the task list. |
BMP_COMPILE | -1 | Used to represent compiler errors in the task list. |
Remarks
COM Signature
From vsshell.idl:
Each task item references its own bitmap image. However, task providers may want to associate task bitmaps with task categories or subcategories.
Task providers may create their own bitmaps for tasks by using the IVsTaskProvider2::get_ImageList
method. Provider-created bitmaps are indexed to a particular task by using the IVsTaskItem2::get_ImageListIndex
method.