WmfObject.cs 856 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMFConverter.Wmf
  7. {
  8. /// <summary>
  9. /// Windows Metafile - Represents WMF Object base
  10. /// </summary>
  11. public class WmfObject : Gdi.IGdiObject
  12. {
  13. #region Local Variables
  14. public int _id;
  15. #endregion
  16. #region Properties
  17. /// <summary>
  18. /// Object Id.
  19. /// </summary>
  20. public int Id
  21. {
  22. get
  23. {
  24. return _id;
  25. }
  26. }
  27. #endregion
  28. #region Constructors
  29. /// <summary>
  30. /// Default constructor.
  31. /// </summary>
  32. /// <param name="id"></param>
  33. public WmfObject(int id)
  34. {
  35. _id = id;
  36. }
  37. #endregion
  38. }
  39. }