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