ScreenStretchRenderingQuality Enumeration
enum ScreenStretchRenderingQuality
{
// ViewerX uses GDI (StretchBlt) to draw scaled screen bitmap
SSQ_GDI = 0,
// ViewerX uses GDI+ to draw scaled screen bitmap
// SetInterpolationMode(InterpolationModeHighQuality);
// SetSmoothingMode(SmoothingModeHighQuality);
SSQ_GDIPLUS_HIGH = 1,
// ViewerX uses GDI+ to draw scaled screen bitmap
// SetInterpolationMode(InterpolationModeLowQuality);
// SetSmoothingMode(SmoothingModeHighSpeed);
SSQ_GDIPLUS_LOW = 2,
};