MindFusion WinForms Programmer's Guide
Calendar.ItemTooltipFormat Property
See Also
 





Gets or sets the format of item tooltips.

Namespace: MindFusion.Scheduling.WinForms
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public string ItemTooltipFormat { get; set; }

Visual Basic  Copy Code

Public Property ItemTooltipFormat As String

 Property Value

A string specifying the item's tooltip format. The default is "%s[d] %s[t] - %e[d] %e[t]\n%h\n%d".

 Remarks

The format string contains format specifiers that let you define what properties of an item are displayed in its tool tip. The following specifiers are supported at this time:

Specifier

Description

%s[{format}]

The item's StartTime, formatted according to the standard date formatting string, specified by {format}. The brackets '{' and '}' should not be included.

%e[{format}]

The item's EndTime, formatted according to the standard date formatting string, specified by {format}. The brackets '{' and '}' should not be included.

%h

The item's header, as set in HeaderText.

%d

The item's description, as set in DescriptionText.

The formatting string can contain any number of the above specifiers in any order.

 See Also

Calendar Members
Calendar Class
MindFusion.Scheduling.WinForms Namespace