using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace HotelPms.Share.Windows.Report { /// /// ˆóŽš’PˆÊ:1/100ƒCƒ“ƒ` (”{—¦‚Å‚µ‚½‚à‚Ì) /// public class Cell { public enum CellKind : int { Text = 0, DotLine, Line, Image, PrintTime, PageNo, TimeAndPage, } /// /// ˆóüƒXƒ^ƒCƒ‹ /// null‚̏ꍇAeƒNƒ‰ƒX‚̈ꊇÝ’è‚̃Xƒ^ƒCƒ‹‚ðŽg‚¤‘z’è /// public CellStyle Style { get; set; } /// /// ƒL[ /// public string Key { get; set; } = string.Empty; /// /// ˆóüŽí—Þ /// public CellKind CellType { get; set; } = CellKind.Text; /// /// ˆóŽšî•ñ /// public string Text { get; set; } = string.Empty; } }