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/100C` ({¦Åµ½àÌ)
| /// </summary>
| public class Cell
| {
| public enum CellKind : int
| {
| Text = 0,
| DotLine,
| Line,
| Image,
| PrintTime,
| PageNo,
| TimeAndPage,
| }
|
| /// <summary>
| /// óüX^C
| /// nullÌêAeNXÌêÝèÌ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;
| }
| }
|
|