PathGradientBrush.cs 547 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Drawing.Drawing2D.PathGradientBrush.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 PathGradientBrush.
  15. /// </summary>
  16. public sealed class PathGradientBrush : Brush
  17. {
  18. internal PathGradientBrush()
  19. {
  20. }
  21. [MonoTODO("implement")]
  22. public override object Clone ()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. }