PenDown.cs 327 B

123456789101112131415161718
  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. /// PD command
  9. /// </summary>
  10. public class PenDown : CommandBase<int>
  11. {
  12. public PenDown() : base()
  13. {
  14. Name = "PD";
  15. }
  16. }
  17. }