コード例 #1
0
 /// <summary>
 /// 初始化一个<see cref="PrintPriceLabelBase"/>类型的实例
 /// </summary>
 protected PrintPriceLabelBase(IEasyPrint easyPrint) => EasyPrint = easyPrint;
コード例 #2
0
 /// <summary>
 /// 初始化一个<see cref="PrintPriceLabelBase"/>类型的实例
 /// </summary>
 public PrintPriceLabelBy90mm(IEasyPrint easyPrint) : base(easyPrint)
 {
 }
コード例 #3
0
        /// <summary>
        /// 创建CPCL打印命令
        /// </summary>
        /// <param name="print"></param>
        // ReSharper disable once InconsistentNaming
        public static CPCLPrintCommand CreateCPCLCommand(this IEasyPrint print)
        {
            var result = print.CreateCommand <CPCLPrintCommand>();

            return(result);
        }