GraphicsState.cs 509 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Drawing.Drawing2D.GraphicsState.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002/3 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Drawing2D {
  11. /// <summary>
  12. /// Summary description for GraphicsState.
  13. /// </summary>
  14. public sealed class GraphicsState : MarshalByRefObject
  15. {
  16. //constructor
  17. internal GraphicsState()
  18. {
  19. //Nothing to be done here
  20. }
  21. //All members inherited
  22. internal Matrix matrix;
  23. internal uint nativeState;
  24. }
  25. }