private string GetBorderStyleContent(ExportCacheCellBorderStyle borderStyle) { string result = ""; result += " width=\"" + Convert.ToString(borderStyle.Width) + "\""; result += " color=\"" + GetHtmlColor(borderStyle.Color_) + "\""; return(result); }
public bool IsEqual(ExportCacheCellBorderStyle borderStyle) { return(borderStyle.Width == 0 && Width == 0 ? true : borderStyle.IsDefault == IsDefault && borderStyle.Color_ == Color_ && borderStyle.Width == Width); }