ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
 
namespace HotelPms.Share.Windows.Report
{
    /// <summary>
    ///  ˆóŽš’PˆÊ:1/100ƒCƒ“ƒ`   (”{—¦‚Å‚µ‚½‚à‚Ì)
    /// </summary>
    public class Cell
    {
        public enum CellKind : int
        { 
            Text = 0,
            DotLine,
            Line,
            Image,
            PrintTime,
            PageNo,
            TimeAndPage,
        }
 
        /// <summary>
        /// ˆóüƒXƒ^ƒCƒ‹
        /// null‚̏ꍇAeƒNƒ‰ƒX‚̈ꊇÝ’è‚̃Xƒ^ƒCƒ‹‚ðŽg‚¤‘z’è
        /// </summary>
        public CellStyle Style { get; set; }
 
        /// <summary>
        /// ƒL[
        /// </summary>
        public string Key { get; set; } = string.Empty;
 
        /// <summary>
        /// ˆóüŽí—Þ
        /// </summary>
        public CellKind CellType {  get; set; } = CellKind.Text;    
 
        /// <summary>
        /// ˆóŽšî•ñ
        /// </summary>
        public string Text { get; set; } = string.Empty;
    }
}