public static CT_Border Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_Border ctObj = new CT_Border(); if (node.Attributes["type"] != null) ctObj.type = (ST_BorderType)Enum.Parse(typeof(ST_BorderType), node.Attributes["type"].Value); ctObj.width = XmlHelper.ReadString(node.Attributes["width"]); ctObj.shadow = NPOI.OpenXmlFormats.Util.XmlHelper.ReadBorderShadow(node.Attributes["shadow"]); return ctObj; }