IGdiPen.cs 647 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMFConverter.Gdi
  7. {
  8. /// <summary>
  9. /// Graphics Device Interface - Represents a Pen object.
  10. /// </summary>
  11. public interface IGdiPen : IGdiObject
  12. {
  13. #region Properties
  14. /// <summary>
  15. /// Object Style.
  16. /// </summary>
  17. int Style { get; }
  18. /// <summary>
  19. /// Object Width.
  20. /// </summary>
  21. int Width { get; }
  22. /// <summary>
  23. /// Object Color.
  24. /// </summary>
  25. int Color { get; }
  26. #endregion
  27. }
  28. }