private ExcelDxfBorderItem GetBorderItem(XmlHelperInstance helper, string path) { ExcelDxfBorderItem bi = new ExcelDxfBorderItem(_styles); bi.Style = GetBorderStyleEnum(helper.GetXmlNodeString(path + "/@style")); bi.Color = GetColor(helper, path + "/d:color"); return(bi); }
internal ExcelDxfBorderBase(ExcelStyles styles) : base(styles) { Left = new ExcelDxfBorderItem(_styles); Right = new ExcelDxfBorderItem(_styles); Top = new ExcelDxfBorderItem(_styles); Bottom = new ExcelDxfBorderItem(_styles); }