[]
        
(Showing Draft Content)

C1.Win.C1TrueDBGrid.BaseGrid.Frame.UseCompatibleTextRendering

UseCompatibleTextRendering Property

UseCompatibleTextRendering

Specifies whether text rendering should be compatible with previous releases of WinForms.

Declaration
public bool UseCompatibleTextRendering { get; set; }
Remarks

This property determines whether the control should render text using the Graphics class (compatible with previous versions), or the new TextRenderer class (available in .NET 2.0 and later).

The TextRenderer class supports complex scripts and Uniscribe APIs, making it better suited for some international applications.

However, the TextRenderer class seems to render about 25% slower than the traditional method.

You may want to try both modes and select the one that matches the appearance of other controls and forms in your application.