System.Drawing.GraphicsContext
namespace System.Drawing
{
internal sealed class GraphicsContext : IDisposable
{
public int State { get; set; }
public Vector2 TransformOffset { get; }
public Region Clip { get; }
public GraphicsContext Next { get; set; }
public GraphicsContext Previous { get; set; }
public bool IsCumulative { get; set; }
public GraphicsContext(Graphics g);
public void Dispose();
}
}