ApplyGraphicsProperties
Enumeration defining the different Graphics properties to apply to an HDC when creating it
from a Graphics object.
namespace System.Drawing
{
[Flags]
internal enum ApplyGraphicsProperties
{
None = 0,
Clipping = 1,
TranslateTransform = 2,
All = 3
}
}