12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.HyperPrinterHandler
- {
- internal class ReceiptColumnItem
- {
- //text will print on receipt
- public string Text { get; set; }
- public int colspan { get; set; }
- /// <summary>
- /// alignment
- /// </summary>
- public string align { get; set; }
- public int width { get; set; }
- public ReceiptColumnItem()
- {
- Text = String.Empty;
- colspan = 0;
- align = "left";
- width = 0;
- }
- }
- }
|