TImageEnDBView.PreviewFontEnabled
Declaration
property PreviewFontEnabled: TFont;
Description
By default (when PreviewFontEnabled = False) IO Preview dialogs are displayed using the system font (e.g. Tahoma or Segoe UI).
If you set PreviewFontEnabled to True then you can use
PreviewFont to specify a custom font for the IO Preview dialogs.
ImageEnDBView1.PreviewFont.Name := 'Tahoma';
ImageEnDBView1.PreviewFontEnabled := False;
ImageEnDBView1.DoPreviews([peAll]);