Search
ItemSettings.UseStyledText Property
See Also
 





Gets or sets a value indicating whether formatting tags such as <b> and <i> are taken into consideration in the items' description text.

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

 Syntax

C#  Copy Code

public State UseStyledText { get; set; }

Visual Basic  Copy Code

Public Property UseStyledText As State

 Property Value

Specify Enabled to enable the use of formatting tags in the item's description; otherwise, Disabled. Assign Unspecified to this property to use the corresponding value from the current theme.

 Remarks

Styled text allows applying various attributes to the characters it contains. Attributes are specified using HTML-like formatting tags embedded in the raw text. The following table lists all permissible formatting tags in the item's description.

Tag

Description

<b>text</b>

Indicates bold text.

<i>text</i>

Indicates italic text.

<u>text</u>

Indicates underlined text.

<sup>text</sup>

Indicates superscript.

<sub>text</sub>

Indicates subscript.

<color=#RRGGBB>text</color>

Changes the color of the text. The red green and blue color channels are specified as two-digit hexadecimal numbers.

 See Also