using System;
using System.Text;
namespace ZXDT.Common.Office
{
///
/// Excel样式
///
public class ExcelStyle
{
StringBuilder s = new StringBuilder();
public StringBuilder StyleString
{
get
{
s.Append("");
return s;
}
}
private string styleid = "Default";
public string StyleID
{
set { styleid = value; }
}
private string fontname = "宋体";
public string FontName
{
set { fontname = value; }
}
private string fontsize = "11";
public string FontSize
{
set { fontsize = value; }
}
private string fontcolor = "#000000";
public string FontColor
{
set { fontcolor = value; }
}
}
}