コード例 #1
0
ファイル: ExportHtmlXmlTxt.cs プロジェクト: 80880655/Esign
        private string GetBorderStyleContent(ExportCacheCellBorderStyle borderStyle)
        {
            string result = "";

            result += " width=\"" + Convert.ToString(borderStyle.Width) + "\"";
            result += " color=\"" + GetHtmlColor(borderStyle.Color_) + "\"";
            return(result);
        }
コード例 #2
0
ファイル: ExportBase.cs プロジェクト: 80880655/Esign
 public bool IsEqual(ExportCacheCellBorderStyle borderStyle)
 {
     return(borderStyle.Width == 0 && Width == 0 ? true :
            borderStyle.IsDefault == IsDefault && borderStyle.Color_ == Color_ && borderStyle.Width == Width);
 }