using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FastReport.Export.Hpgl.Commands
{
///
/// SP command
///
public class SelectPen : CommandBase
{
public SelectPen() : base()
{
Name = "SP";
Parameters.Add(0);
}
}
}