GraphicsPathIterator.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //
  2. // System.Drawing.Drawing2D.GraphicsPathIterator.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 GraphicsPathIterator.
  13. /// </summary>
  14. ///
  15. public sealed class GraphicsPathIterator : MarshalByRefObject {
  16. protected GraphicsPath path;
  17. // Constructors
  18. public GraphicsPathIterator(GraphicsPath path) {
  19. this.path = path;
  20. }
  21. //Public Properites
  22. public int Count {
  23. get {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. public int SubpathCount {
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. //Public Methods.
  33. public int CopyData( ref PointF [] points, ref byte [] types, int startIndex, int endIndex){
  34. throw new NotImplementedException ();
  35. }
  36. public void Dispose(){
  37. }
  38. public int Enumerate(ref PointF [] points, ref byte [] types){
  39. throw new NotImplementedException ();
  40. }
  41. public bool HasCurve(){
  42. throw new NotImplementedException ();
  43. }
  44. public int NextMarker(GraphicsPath path){
  45. throw new NotImplementedException ();
  46. }
  47. public int NextMarker(out int startIndex, out int endIndex){
  48. throw new NotImplementedException ();
  49. }
  50. public int NextPathType(out byte pathType, out int startIndex, int endIndex){
  51. throw new NotImplementedException ();
  52. }
  53. public int NextSubpath(GraphicsPath path, out bool isClosed){
  54. throw new NotImplementedException ();
  55. }
  56. public int NextSubpath(out int startIndex, out int endIndex, out bool isClosed){
  57. throw new NotImplementedException ();
  58. }
  59. public void Rewind(){
  60. }
  61. }
  62. }