SelectPen.cs 362 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace FastReport.Export.Hpgl.Commands
  6. {
  7. /// <summary>
  8. /// SP command
  9. /// </summary>
  10. public class SelectPen : CommandBase<int>
  11. {
  12. public SelectPen() : base()
  13. {
  14. Name = "SP";
  15. Parameters.Add(0);
  16. }
  17. }
  18. }