Skip to main content
A newer version of this page is available. .

JumpListItemTask.Description Property

Gets or sets the task description shown in the tooltip.

Namespace: DevExpress.Utils.Taskbar

Assembly: DevExpress.Utils.v19.1.dll

Declaration

[DefaultValue("")]
[DXCategory("Behavior")]
public string Description { get; set; }

Property Value

Type Default Description
String String.Empty

A String value that specifies the task description shown in the tooltip.

Remarks

Use the Description property to provide the text for the tooltip shown when the mouse pointer is positioned over the current task in the jump list. You can specify the tooltip text using the Jump List Editor as shown below.

JumpListItemTask_Description

Or provide a description in code.


jumpListItemTask1.Description = "This is a description";

In the figure below, you can see the result.

JumpListItemTask_DescriptionShown

See Also