using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace HotelPms.Share.Windows.Report
{
///
/// óPÊ:1/100C` ({¦Åµ½àÌ)
///
public class Cell
{
public enum CellKind : int
{
Text = 0,
DotLine,
Line,
Image,
PrintTime,
PageNo,
TimeAndPage,
}
///
/// óüX^C
/// nullÌêAeNXÌêÝèÌ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;
}
}