AdjustableArrowCap.jvm.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //
  2. // System.Drawing.Drawing2D.AdjustableArrowCap.cs
  3. //
  4. // Authors:
  5. // Dennis Hayes ([email protected])
  6. // Ravindra ([email protected])
  7. //
  8. // Copyright (C) 2002/3 Ximian, Inc. http://www.ximian.com
  9. // Copyright (C) 2004 Novell, Inc. http://www.novell.com
  10. //
  11. //
  12. // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
  13. //
  14. // Permission is hereby granted, free of charge, to any person obtaining
  15. // a copy of this software and associated documentation files (the
  16. // "Software"), to deal in the Software without restriction, including
  17. // without limitation the rights to use, copy, modify, merge, publish,
  18. // distribute, sublicense, and/or sell copies of the Software, and to
  19. // permit persons to whom the Software is furnished to do so, subject to
  20. // the following conditions:
  21. //
  22. // The above copyright notice and this permission notice shall be
  23. // included in all copies or substantial portions of the Software.
  24. //
  25. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  29. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  30. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  31. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  32. //
  33. using System;
  34. namespace System.Drawing.Drawing2D
  35. {
  36. /// <summary>
  37. /// Summary description for AdjustableArrowCap.
  38. /// </summary>
  39. public sealed class AdjustableArrowCap : CustomLineCap
  40. {
  41. // Constructors
  42. public AdjustableArrowCap (float width, float height) : this (width, height, true)
  43. {
  44. }
  45. public AdjustableArrowCap (float width, float height, bool isFilled)
  46. {
  47. throw new NotImplementedException();
  48. }
  49. // Public Properities
  50. public bool Filled {
  51. get {
  52. throw new NotImplementedException();
  53. }
  54. set {
  55. throw new NotImplementedException();
  56. }
  57. }
  58. public float Width {
  59. get {
  60. throw new NotImplementedException();
  61. }
  62. set {
  63. throw new NotImplementedException();
  64. }
  65. }
  66. public float Height {
  67. get {
  68. throw new NotImplementedException();
  69. }
  70. set {
  71. throw new NotImplementedException();
  72. }
  73. }
  74. public float MiddleInset {
  75. get {
  76. throw new NotImplementedException();
  77. }
  78. set {
  79. throw new NotImplementedException();
  80. }
  81. }
  82. }
  83. }