GraphicsState
namespace System.Drawing.Drawing2D
{
public sealed class GraphicsState : MarshalByRefObject
{
internal int _nativeState;
internal GraphicsState(int nativeState)
{
_nativeState = nativeState;
}
}
}