This interface is implemented to provide style overrides to a C1RichTextBox.

Namespace:  C1.Phone.RichTextBox
Assembly:  C1.Phone.RichTextBox (in C1.Phone.RichTextBox.dll)

Syntax

C#
public interface IStyleOverride
Visual Basic
Public Interface IStyleOverride

Remarks

A style override is a way to modify the style of a C1Document displayed in a C1RichTextBox without modifying the document.

There are two approaches to implementing this interface. An implementation could either calculate the collection of C1RangeStyle each time GetStyles(C1TextRange) is called, or have a pre calculated collection of C1RangeStyle, and return the ones inside the range passed as a parameter to GetStyles. For the second approach, the use of C1RangeStyleCollection is recommended.

Note that only style properties that do not change the layout of the document can be overridden. As an example, FontWeightProperty cannot be overridden, but ForegroundProperty can.

See Also