GraphicsContainer.cs 712 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // System.Drawing.Drawing2D.GraphicsContainer.cs
  3. //
  4. // Authors:
  5. // Dennis Hayes ([email protected])
  6. // Andreas Nahr ([email protected])
  7. //
  8. // (C) 2002/3 Ximian, Inc
  9. //
  10. using System;
  11. namespace System.Drawing.Drawing2D {
  12. /// <summary>
  13. /// Summary description for GraphicsContainer.
  14. /// </summary>
  15. public sealed class GraphicsContainer : MarshalByRefObject {
  16. internal int nativeState = 0;
  17. private GraphicsContainer ()
  18. {
  19. }
  20. internal GraphicsContainer (int state)
  21. {
  22. nativeState = state;
  23. }
  24. internal int NativeObject{
  25. get{
  26. return nativeState;
  27. }
  28. set {
  29. nativeState = value;
  30. }
  31. }
  32. }
  33. }