using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FastReport.Export.Hpgl.Commands { /// /// PD command /// public class PenDown : CommandBase { public PenDown() : base() { Name = "PD"; } } }