views:

19

answers:

1

The possible values of PixelOffsetMode are:

Invalid
Default
HighSpeed
HighQuality
None
Half

I'm guessing that HighQuality = Half, HighSpeed = None and Default = HighSpeed.

If this is true then, like the SmoothingMode, I can offer just two simple options.

Does anyone know if this is correct and, if so, where on earth did you find the information?

Thanks

A: 

PixelOffsetMode is defined as:

public enum PixelOffsetMode
{
    Invalid = -1,
    Default = 0,
    HighSpeed = 1,
    HighQuality = 2,
    None = 3
    Half = 4,
}

A great way to see these values (and other similar things) is to use .NET Reflector.

Reed Copsey
Hi, I know the values of the enumeration but I want to know how they are converted for the out of framework call. For instance if you look at SmoothingMode, there are many values but it basically boils down to two options - Antialias or not. I think this will boil down to Offset by Half or don't offset.
Jules