Hi
The text quality on the tabset (Vcl) is very poor. I noticed that it's HTML-based - is there a way to get better quality, and to avoid HTML?
Thanks, Bob
Hi,
You can change the quality with the following code
type
TTMSFNCTabSetOpen = class(TTMSFNCTabSet);
procedure TForm1.FormCreate(Sender: TObject);
begin
TTMSFNCTabSetOpen(TMSFNCTabSet1).TextQuality := gtqDefault;
end;
Thanks - that does make it look less fuzzy, but it still isn't great and looks very different from the text on the standard Vcl tabset (Tahoma, 8). I've tried the different Quality settings for the font (fqClearType etc) but can't get it to match the in-built tabset.
Thanks, Bob
Hi,
This is because GDI+ is used. When you want to switch to GDI, you can use the following code:
TTMSFNCTabSetOpen(TMSFNCTabSet1).NativeCanvas := False;
Yet, this will also disable anti-aliasing on rounded corners of the tabs
Ah ok thanks