12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMFConverter.Wmf
- {
- /// <summary>
- /// Windows Metafile - Represents WMF Object base
- /// </summary>
- public class WmfObject : Gdi.IGdiObject
- {
- #region Local Variables
- public int _id;
- #endregion
- #region Properties
- /// <summary>
- /// Object Id.
- /// </summary>
- public int Id
- {
- get
- {
- return _id;
- }
- }
- #endregion
- #region Constructors
- /// <summary>
- /// Default constructor.
- /// </summary>
- /// <param name="id"></param>
- public WmfObject(int id)
- {
- _id = id;
- }
- #endregion
-
- }
- }
|