RegionData.cs 493 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Drawing.Drawing2D.RegionData.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. {
  13. /// <summary>
  14. /// Summary description for RegionData.
  15. /// </summary>
  16. public sealed class RegionData
  17. {
  18. byte[] data;
  19. internal RegionData()
  20. {
  21. }
  22. public byte[] Data {
  23. get {return data;}
  24. set {data = value;}
  25. }
  26. }
  27. }