GraphicsUnit
Specifies the unit of measure for the given data.
using System.Runtime.CompilerServices;
namespace System.Drawing
{
[TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public enum GraphicsUnit
{
World,
Display,
Pixel,
Point,
Inch,
Document,
Millimeter
}
}